This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
ant
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
1
Code
Releases
0
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
loadresource might log warnings even though quiet was set to true
https://bz.apache.org/bugzilla/show_bug.cgi?id=65647
master
Stefan Bodewig
2 years ago
parent
4b7965dc68
commit
0aca73974a
2 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
WHATSNEW
+1
-1
src/main/org/apache/tools/ant/taskdefs/LoadResource.java
+ 3
- 0
WHATSNEW
View File
@@ -44,6 +44,9 @@ Fixed bugs:
NUL rather than the first.
Github Pull Request #194
* loadresource might log warnings even though quiet was set to true
Bugzilla Report 65647
Other changes:
--------------
+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/LoadResource.java
View File
@@ -141,7 +141,7 @@ public class LoadResource extends Task {
if (failOnError) {
throw new BuildException(message);
}
log(message, quiet ? Project.MSG_
WARN
: Project.MSG_ERR);
log(message, quiet ? Project.MSG_
VERBOSE
: Project.MSG_ERR);
return;
}
Write
Preview
Loading…
Cancel
Save