Provide exact error when there is a problem opening the logging config file. Fixes #464 (#470)

This commit is contained in:
Ryan Baxter
2019-01-18 10:29:14 -05:00
committed by GitHub
parent 493a324d03
commit 7ee51d9bc8

View File

@@ -134,8 +134,7 @@ public class PropertySourceBootstrapConfiguration implements
}
catch (Exception ex) {
PropertySourceBootstrapConfiguration.logger
.warn("Logging config file location '" + logConfig
+ "' cannot be opened and will be ignored");
.warn("Error opening logging config file " + logConfig, ex);
}
}
}