Skip to content

Commit

Permalink
Minor change to logging file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
evie-lau committed Oct 25, 2023
1 parent c3f172d commit 88816c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ private static void parseDocumentsInDirectory(File directory, ArrayList<Document
try {
docs.add(parseDocument(p.toFile()));
} catch (Exception e) {
log.warn("Unable to parse from file " + p.getFileName() + " in include directory: " + directory.getName());
log.warn("Unable to parse from file " + p.getFileName() + " from specified include directory: " + directory.getPath());
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ private Set<String> parseIncludeNode(Set<String> origResult, File serverDirector
String onConflict = node.getAttribute("onConflict");
Set<String> features = getServerXmlFeatures(null, serverDirectory, file, bootstrapProperties, updatedParsedXmls);
if (features != null && !features.isEmpty()) {
info("Features were included for file "+ file.getCanonicalPath());
info("Features were included for file "+ file.toString());
}
result = handleOnConflict(result, onConflict, features);
}
Expand Down

0 comments on commit 88816c5

Please sign in to comment.