Skip to content

Commit d1eec95

Browse files
committed
Propagate workflow stderr to minimal log output
Changed stderr logging level from 2 to 0 so that error output from workflows appears in the minimal log file, making it easier for users to see errors without viewing full logs. https://claude.ai/code/session_01L9vBwhCPsXUTTxen3sW8rn
1 parent 8e2a34d commit d1eec95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/workflow/CommandExecutor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def read_stderr():
153153
try:
154154
for line in iter(process.stderr.readline, ''):
155155
if line:
156-
self.logger.log(f"STDERR: {line.rstrip()}", 2)
156+
self.logger.log(f"STDERR: {line.rstrip()}", 0)
157157
if process.poll() is not None:
158158
break
159159
except Exception as e:

0 commit comments

Comments
 (0)