Skip to content

Commit

Permalink
Minor bug in error printing for Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed Dec 14, 2024
1 parent 5886e76 commit 9c99689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/plugin/Plugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public Void runPlugin (Book book)
logger.info("{} exit value: {}", getId(), exitValue);
}
} catch (IOException | InterruptedException ex) {
logger.warn("Error launching {} {}" + this, ex.toString(), ex);
logger.warn("Error launching {} {}", this, ex.toString(), ex);
}

return null;
Expand Down

0 comments on commit 9c99689

Please sign in to comment.