Navigation Menu

Skip to content

Commit

Permalink
Reduce level from info to debug
Browse files Browse the repository at this point in the history
In constructor of DependencyQueueTaskDispatcher and
ReplicationQueueTaskDispatcher.

Fix for JENKINS-22814: Some infomations are logged from constructor on
startup 
https://issues.jenkins-ci.org/browse/JENKINS-22814
  • Loading branch information
rinrinne committed Apr 30, 2014
1 parent b8b6d0c commit 1d9e0db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -92,7 +92,7 @@ public DependencyQueueTaskDispatcher() {
} else {
gerritHandler.addListener(this);
}
logger.info("Registered to gerrit events");
logger.debug("Registered to gerrit events");
}

/**
Expand Down
Expand Up @@ -83,7 +83,7 @@ public ReplicationQueueTaskDispatcher() {
blockedItems = new ConcurrentHashMap<Integer, BlockedItem>();
this.replicationCache = replicationCache;
gerritHandler.addListener(this);
logger.info("Registered to gerrit events");
logger.debug("Registered to gerrit events");
}

@Override
Expand Down

0 comments on commit 1d9e0db

Please sign in to comment.