Skip to content

Commit 64277f2

Browse files
committed
fix quotes for logging
1 parent 875f048 commit 64277f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/LatestRevisionUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public static String getLastRevFromIndex(File file) {
102102
}
103103
Date fileDate = new Date(file.lastModified());
104104
if (docDate.compareTo(fileDate) < 0) {
105-
LOGGER.log(Level.FINER, "document for '{0}' is out of sync", file);
105+
LOGGER.log(Level.FINER, "document for ''{0}'' is out of sync", file);
106106
return null;
107107
}
108108
}

0 commit comments

Comments
 (0)