Address follow-up comments to Change 396868

Some of the comments on Change 396868 were missed in the
review follow-ups.

Change-Id: I000011ff37785e2374909a3e3baecfb057373e66
diff --git a/src/main/java/com/googlesource/gerrit/plugins/replication/pull/fetch/ChangeMetaCommitValidator.java b/src/main/java/com/googlesource/gerrit/plugins/replication/pull/fetch/ChangeMetaCommitValidator.java
index a5fec55..4e080af 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/replication/pull/fetch/ChangeMetaCommitValidator.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/replication/pull/fetch/ChangeMetaCommitValidator.java
@@ -1,4 +1,4 @@
-// Copyright (C) 2020 The Android Open Source Project
+// Copyright (C) 2023 The Android Open Source Project
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -56,8 +56,8 @@
 
     RevCommit patchSetCommit = repo.parseCommit(patchSetObjectId.get());
     logger.atFine().log(
-        "Change ref %s has latest patch-set %d and is successfully resolved to %s with commit %s",
-        refName, latestPatchSet.getAsInt(), patchSetObjectId.get().getName(), patchSetCommit);
+        "Change on repository %s ref %s has latest patch-set %d and is successfully resolved to %s with commit %s",
+        repo, refName, latestPatchSet.getAsInt(), patchSetObjectId.get().getName(), patchSetCommit);
 
     return true;
   }