Skip to content

Commit aa5e7d1

Browse files
committed
remove double quotes in log message
1 parent 99d0b10 commit aa5e7d1

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/FileAnnotationCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public void store(File file, Annotation annotation) throws CacheException {
178178
Statistics statistics = new Statistics();
179179
try {
180180
CacheUtil.writeCache(annotation.annotationData, cacheFile);
181-
statistics.report(LOGGER, Level.FINEST, String.format("wrote annotation for ''%s''", file),
181+
statistics.report(LOGGER, Level.FINEST, String.format("wrote annotation for '%s'", file),
182182
"cache.annotation.file.store.latency");
183183
} catch (IOException e) {
184184
LOGGER.log(Level.WARNING, "failed to write annotation to cache", e);

0 commit comments

Comments
 (0)