提交 88503bce 编写于 作者: O Olivier Lamy

Merge pull request #592 from wwade/master

[FIXED JENKINS-15540] Update logging levels in LogRotator
......@@ -128,7 +128,7 @@ public class LogRotator implements Describable<LogRotator> {
LOGGER.log(FINER,r.getFullDisplayName()+" is not GC-ed because it's the last stable build");
continue;
}
LOGGER.log(FINER,r.getFullDisplayName()+" is to be removed");
LOGGER.log(FINE,r.getFullDisplayName()+" is to be removed");
r.delete();
}
}
......@@ -153,7 +153,7 @@ public class LogRotator implements Describable<LogRotator> {
LOGGER.log(FINER,r.getFullDisplayName()+" is not GC-ed because it's still new");
continue;
}
LOGGER.log(FINER,r.getFullDisplayName()+" is to be removed");
LOGGER.log(FINE,r.getFullDisplayName()+" is to be removed");
r.delete();
}
}
......@@ -173,6 +173,7 @@ public class LogRotator implements Describable<LogRotator> {
LOGGER.log(FINER,r.getFullDisplayName()+" is not purged of artifacts because it's the last stable build");
continue;
}
LOGGER.log(FINE,r.getFullDisplayName()+" is to be purged of artifacts");
r.deleteArtifacts();
}
}
......@@ -197,6 +198,7 @@ public class LogRotator implements Describable<LogRotator> {
LOGGER.log(FINER,r.getFullDisplayName()+" is not purged of artifacts because it's still new");
continue;
}
LOGGER.log(FINE,r.getFullDisplayName()+" is to be purged of artifacts");
r.deleteArtifacts();
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册