s6-rc: don't tee to /dev/stderr, as i don't want any logs going to the console and interfering with text entry

This commit is contained in:
Colin 2024-03-31 04:47:14 +00:00
parent ade680d9d2
commit 89d4b0ae0b
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ in
}
function startS6WithLogging() {
mkdir -p "${logBase}" #< needs to exist for parallel s6-log call
startS6 2>&1 | tee /dev/stderr | s6-log -- T "${logBase}/catchall"
startS6 2>&1 | s6-log -- T "${logBase}/catchall"
}
primarySessionCommands+=('startS6WithLogging &')