Skip to content

Commit 8619532

Browse files
author
Vladimir Kotal
committed
bump log level on failed close to WARNING
1 parent 6d79cf9 commit 8619532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ public String getLatestCachedRevision(Repository repository) {
740740
try {
741741
input.close();
742742
} catch (java.io.IOException e) {
743-
LOGGER.log(Level.FINEST, "failed to close", e);
743+
LOGGER.log(Level.WARNING, "failed to close", e);
744744
}
745745
}
746746
} catch (java.io.FileNotFoundException e) {

0 commit comments

Comments
 (0)