Skip to content

Commit 0e0928d

Browse files
committed
feat(core): log at ERROR level for script logs to stderr
Fixes kestra-io/plugin-scripts#190
1 parent a0e2c20 commit 0e0928d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: core/src/main/java/io/kestra/core/models/tasks/runners/PluginUtilsService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public static Map<String, Object> parseOut(String line, Logger logger, RunContex
201201
}
202202
} else {
203203
if (isStdErr) {
204-
runContext.logger().warn(line);
204+
runContext.logger().error(line);
205205
} else {
206206
runContext.logger().info(line);
207207
}

0 commit comments

Comments
 (0)