Skip to content

Commit

Permalink
Fix: Type in debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
BLasan committed Sep 26, 2024
1 parent 0bca3a4 commit b6a4196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10111,7 +10111,7 @@ public static String getCustomBackendSequenceFromFile(String extractedFolderPath
String fileName = extractedFolderPath + File.separator + sequenceName;
if (checkFileExistence(fileName)) {
if (log.isDebugEnabled()) {
log.debug("Found policy definition file " + fileName);
log.debug("Found Sequence Backend file " + fileName);
}
customBackendContent = FileUtils.readFileToString(new File(fileName));
}
Expand Down

0 comments on commit b6a4196

Please sign in to comment.