Skip to content

Commit

Permalink
Open With apps for macOS - added some error level debugs logs (tempor…
Browse files Browse the repository at this point in the history
…ary)
  • Loading branch information
pskowronek committed May 4, 2023
1 parent b5e527a commit f328374
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private String getPathOfDutiCmd() {
return false; // continue searching
});
if (dutiCmdPath != null && dutiCmdPath.length() > 0) {
LOGGER.info("Command 'duti' found here: {}", dutiCmdPath);
LOGGER.error("Command 'duti' found here: {}", dutiCmdPath);
} else {
LOGGER.error("Command 'duti' not found");
}
Expand All @@ -410,6 +410,7 @@ private boolean runCommand(String[] commands, boolean useStdErr, int expectedExi
if (commands == null || commands.length == 0) {
throw new IllegalArgumentException("Given commands value is null or empty");
}
LOGGER.error("Going to exec: {}", commands);
boolean result = false;
String command = commands[0];
try {
Expand Down

0 comments on commit f328374

Please sign in to comment.