Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Ski committed Jul 9, 2024
1 parent f519e99 commit 83267fc
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public static File getToolFile (String toolPathOrName, RuntimeEnv env, String op
for (String path : paths) {
File file = new File(path, toolPathOrName);
logger.warn("Searching in path {} for tool {}, total path {}", path, toolPathOrName, file);
logger.warn("exists {} is file {} is exec {}", file.exists(), file.isFile(), file.canExecute());
if (file.exists() && file.isFile()) {
return file;
}
Expand Down

0 comments on commit 83267fc

Please sign in to comment.