Skip to content

Commit 0df451c

Browse files
committed
switch log level for out of repository files to FINER
1 parent a2c1abb commit 0df451c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/history/SubversionHistoryParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void endElement(String uri, String localName, String qname) {
109109
path = stringInterner.intern(path);
110110
entry.addFile(path);
111111
} else {
112-
OpenGrokLogger.getLogger().log(Level.INFO, "Skipping file outside repository: " + s);
112+
OpenGrokLogger.getLogger().log(Level.FINER, "Skipping file outside repository: " + s);
113113
}
114114
} else if ("msg".equals(qname)) {
115115
entry.setMessage(s);

0 commit comments

Comments
 (0)