Skip to content

Commit

Permalink
[JENKINS-22681] Toning down some logging to FINER.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Apr 29, 2014
1 parent 3ef8063 commit 1428257
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/src/main/java/hudson/model/Run.java
Expand Up @@ -282,7 +282,7 @@ protected SimpleDateFormat initialValue() {
protected Run(JobT job) throws IOException {
this(job, new GregorianCalendar());
this.number = project.assignBuildNumber();
LOGGER.log(FINE, "new {0} @{1}", new Object[] {this, hashCode()});
LOGGER.log(FINER, "new {0} @{1}", new Object[] {this, hashCode()});
}

/**
Expand Down Expand Up @@ -321,7 +321,7 @@ public void reload() throws IOException {
getDataFile().unmarshal(this); // load the rest of the data

if (state == State.COMPLETED) {
LOGGER.log(FINE, "reload {0} @{1}", new Object[] {this, hashCode()});
LOGGER.log(FINER, "reload {0} @{1}", new Object[] {this, hashCode()});
} else {
LOGGER.log(WARNING, "reload {0} @{1} with anomalous state {2}", new Object[] {this, hashCode(), state});
}
Expand Down Expand Up @@ -1744,7 +1744,7 @@ protected final void execute(RunExecution job) {
// will now see this build as completed.
// things like triggering other builds requires this as pre-condition.
// see issue #980.
LOGGER.log(FINE, "moving into POST_PRODUCTION on {0}", this);
LOGGER.log(FINER, "moving into POST_PRODUCTION on {0}", this);
state = State.POST_PRODUCTION;

if (listener != null) {
Expand Down Expand Up @@ -1840,7 +1840,7 @@ private void handleFatalBuildProblem(BuildListener listener, Throwable e) {
* Called when a job started building.
*/
protected void onStartBuilding() {
LOGGER.log(FINE, "moving to BUILDING on {0}", this);
LOGGER.log(FINER, "moving to BUILDING on {0}", this);
state = State.BUILDING;
startTime = System.currentTimeMillis();
if (runner!=null)
Expand All @@ -1853,7 +1853,7 @@ protected void onStartBuilding() {
protected void onEndBuilding() {
// signal that we've finished building.
state = State.COMPLETED;
LOGGER.log(FINE, "moving to COMPLETED on {0}", this);
LOGGER.log(FINER, "moving to COMPLETED on {0}", this);
if (runner!=null) {
// MavenBuilds may be created without their corresponding runners.
runner.checkpoints.allDone();
Expand Down

0 comments on commit 1428257

Please sign in to comment.