Skip to content

Commit e7171c5

Browse files
committed
Fixed an incorrect log message in the ProcessRunner
1 parent aa88100 commit e7171c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/core-util/src/main/java/ai/wanaku/core/util/ProcessRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static void run(File directory, String...command) {
3636
LOG.info("Waiting for process to finish...");
3737
final int i = process.waitFor();
3838
if (i != 0) {
39-
LOG.warn("Process did execute successfully");
39+
LOG.warn("Process did not execute successfully");
4040
}
4141
} catch (IOException e) {
4242
LOG.error("I/O Error: %s", e.getMessage(), e);

0 commit comments

Comments
 (0)