mirror of
https://github.com/dagu-org/dagu.git
synced 2025-12-28 06:34:22 +00:00
feat(schema): logOutput
This commit is contained in:
parent
df257b49e8
commit
345ef13565
@ -169,6 +169,12 @@
|
||||
"type": "string",
|
||||
"description": "Base directory for storing logs. Defaults to ${HOME}/.local/share/logs if not specified."
|
||||
},
|
||||
"logOutput": {
|
||||
"type": "string",
|
||||
"enum": ["separate", "merged"],
|
||||
"default": "separate",
|
||||
"description": "Controls how stdout and stderr are logged. 'separate' writes stdout to .out and stderr to .err files. 'merged' writes both to a single .log file with interleaved output."
|
||||
},
|
||||
"handlerOn": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@ -637,6 +643,11 @@
|
||||
"type": "string",
|
||||
"description": "File path where the step's standard error (stderr) will be written."
|
||||
},
|
||||
"logOutput": {
|
||||
"type": "string",
|
||||
"enum": ["separate", "merged"],
|
||||
"description": "Override DAG-level log output mode. 'separate' writes stdout to .out and stderr to .err files. 'merged' writes both to a single .log file."
|
||||
},
|
||||
"output": {
|
||||
"type": "string",
|
||||
"description": "Variable name to capture the command's stdout. This output can be referenced in subsequent steps."
|
||||
|
||||
Loading…
Reference in New Issue
Block a user