We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d435b82 commit 4a8dfbeCopy full SHA for 4a8dfbe
src/org/opensolaris/opengrok/configuration/Configuration.java
@@ -1036,11 +1036,11 @@ private static String getFileContent(File file) {
1036
}
1037
return contents.toString();
1038
} catch (java.io.FileNotFoundException e) {
1039
- /*
1040
- * should usually not happen
1041
- */
+ LOGGER.log(Level.WARNING, "failed to find file: {0}",
+ e.getMessage());
1042
} catch (java.io.IOException e) {
1043
- LOGGER.log(Level.WARNING, "failed to read header include file: {0}", e.getMessage());
+ LOGGER.log(Level.WARNING, "failed to read file: {0}",
1044
} finally {
1045
if (input != null) {
1046
try {
0 commit comments