Skip to content

Commit

Permalink
feat(core): log at ERROR level for script logs to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Dec 10, 2024
1 parent a0e2c20 commit 0e0928d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public static Map<String, Object> parseOut(String line, Logger logger, RunContex
}
} else {
if (isStdErr) {
runContext.logger().warn(line);
runContext.logger().error(line);
} else {
runContext.logger().info(line);
}
Expand Down

0 comments on commit 0e0928d

Please sign in to comment.