Skip to content

Commit

Permalink
Log improvement in FilePropertyResolver
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirishikesan committed May 18, 2023
1 parent b7aa5dd commit 645556d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ public String resolve() {
String PropertyValue = propertyLoader.getValue(input);

if (LOG.isDebugEnabled()) {
LOG.debug("Resolving File Property value " + PropertyValue);
LOG.debug("Resolving File parameter key: "+ input + " value: " + PropertyValue);
}

if (PropertyValue == null) {
throw new ResolverException("File Property variable could not be found");
throw new ResolverException("File parameter key: " + input + " could not be found");
}
return PropertyValue;
}
Expand Down

0 comments on commit 645556d

Please sign in to comment.