Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Improve error message when the properties file isn't found (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlisonbee authored Oct 19, 2017
1 parent 9708f5a commit 7f52c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/nike/cerberus/client/ClientVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static String getVersion() {

clientVersion = properties.getProperty(JAVA_CLIENT_VERSION_PROPERTY);
} catch (Exception e) {
LOGGER.error("Failed to load client properties file", e);
LOGGER.error("Failed to load file '" + CLIENT_VERSION_PROPERTY_FILE + "' from cerberus-client jar", e);
}

return clientVersion;
Expand Down

0 comments on commit 7f52c86

Please sign in to comment.