CheckCodeOwnerConfigFiles: Include verbosity level into debug logs

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I5afa6e56d203669c5ecd557cfb722a8ce4981b5f
diff --git a/java/com/google/gerrit/plugins/codeowners/restapi/CheckCodeOwnerConfigFiles.java b/java/com/google/gerrit/plugins/codeowners/restapi/CheckCodeOwnerConfigFiles.java
index 6829041..b193838 100644
--- a/java/com/google/gerrit/plugins/codeowners/restapi/CheckCodeOwnerConfigFiles.java
+++ b/java/com/google/gerrit/plugins/codeowners/restapi/CheckCodeOwnerConfigFiles.java
@@ -109,8 +109,12 @@
 
     logger.atFine().log(
         "checking code owner config files for project %s"
-            + " (validateDisabledBranches = %s, branches = %s, path = %s)",
-        projectResource.getNameKey(), input.validateDisabledBranches, input.branches, input.path);
+            + " (validateDisabledBranches = %s, branches = %s, path = %s, verbosity = %s)",
+        projectResource.getNameKey(),
+        input.validateDisabledBranches,
+        input.branches,
+        input.path,
+        input.verbosity);
 
     ImmutableSet<BranchNameKey> branches = branches(projectResource);