Skip to content

Commit e96aead

Browse files
committed
log both paths
1 parent d840cfa commit e96aead

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexDatabase.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2124,7 +2124,8 @@ public static Document getDocument(File file) throws ParseException, IOException
21242124

21252125
// Only use the document if we found an exact match.
21262126
if (!path.equals(foundPath)) {
2127-
LOGGER.log(Level.FINEST, "not matching path: ''{0}''", foundPath);
2127+
LOGGER.log(Level.FINEST, "not matching path: ''{0}'' for ''{1}''",
2128+
new Object[]{foundPath, path});
21282129
return null;
21292130
}
21302131
} finally {

0 commit comments

Comments
 (0)