Skip to content

Commit

Permalink
Merge pull request wso2#2099 from Kirishikesan/support-4.0.0-wso2v20.…
Browse files Browse the repository at this point in the history
…x-full

Log improvement in FilePropertyResolver
  • Loading branch information
chamilaadhi committed May 18, 2023
2 parents b7aa5dd + 645556d commit 442cf81
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 442cf81

Please sign in to comment.