Promote replication scheduled logs to info

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
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 @@
   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 @@
       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);
     }
   }