Skip to content

Commit

Permalink
[JENKINS-22681] Toning down some logging to FINER.
Browse files Browse the repository at this point in the history
(cherry picked from commit 1428257)
  • Loading branch information
jglick authored and olivergondza committed May 14, 2014
1 parent 701045e commit 347a9a4
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 @@ -287,7 +287,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 @@ -326,7 +326,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 @@ -1722,7 +1722,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 @@ -1818,7 +1818,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 @@ -1831,7 +1831,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 347a9a4

Please sign in to comment.