提交 cfa6087d 编写于 作者: K kohsuke

reducing these log levels because they tend to fill up the log view.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@3247 71c3de6d-444a-0410-be80-ed276b4c234a
上级 519b219b
......@@ -176,10 +176,10 @@ public abstract class Run <JobT extends Job<JobT,RunT>,RunT extends Run<JobT,Run
// result can only get worse
if(result==null) {
result = r;
LOGGER.info(toString()+" : result is set to "+r+" by "+caller);
LOGGER.fine(toString()+" : result is set to "+r+" by "+caller);
} else {
if(r.isWorseThan(result)) {
LOGGER.info(toString()+" : result is set to "+r+" by "+caller);
LOGGER.fine(toString()+" : result is set to "+r+" by "+caller);
result = r;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册