summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Arès <hugo.ares@ericsson.com>2014-07-15 11:16:15 -0400
committerHugo Arès <hugo.ares@ericsson.com>2014-07-15 15:29:27 +0000
commit677c250ce56e8631751e2a6a58276a0138b20b08 (patch)
treea34d8e28ef5d18866808b275345fbfb1fd009a4e
parenta0419cbe929aa3254784e9572d70d7ea91aca3c3 (diff)
Promote replication scheduled logs to infov2.10-rc0
Replication log is logging info level and up so change the replication scheduled logs level from debug to info to see them by default. Change-Id: Ic237a31ed79b13003f63e2c91b3515a9b681687f
-rw-r--r--src/main/java/com/googlesource/gerrit/plugins/replication/Destination.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/Destination.java b/src/main/java/com/googlesource/gerrit/plugins/replication/Destination.java
index 3dcf0e1..14337d6 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/Destination.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/Destination.java
@@ -202,7 +202,7 @@ class Destination {
void schedule(final Project.NameKey project, final String ref,
final URIish uri, ReplicationState state) {
try {
- repLog.debug("scheduling replication {}:{} => {}", project, ref, uri);
+ repLog.info("scheduling replication {}:{} => {}", project, ref, uri);
boolean visible = threadScoper.scope(new Callable<Boolean>(){
@Override
public Boolean call() throws NoSuchProjectException {
@@ -263,7 +263,7 @@ class Destination {
e.addRef(ref);
state.increasePushTaskCount(project.get(), ref);
e.addState(ref, state);
- repLog.debug("scheduled {}:{} => {} to run after {}s", project, ref,
+ repLog.info("scheduled {}:{} => {} to run after {}s", project, ref,
e, delay);
}
}