New comment by shahab-vahedi on void-packages repository https://github.com/void-linux/void-packages/issues/45653#issuecomment-1685884112 Comment: I found the culprit: The `exec 2>&1` added by this [commit](https://github.com/void-linux/void-packages/commit/351646d5bd739c5767561058967af455834ffc3b). I don't know what the rationale behind that commit was, but undoing it, fixes the problem for me. ``` --- /etc/sv/metalog/run.orig +++ /etc/sv/metalog/run @@ -1,5 +1,4 @@ #!/bin/sh -exec 2>&1 exec 1>&2 [ -r conf ] && . ./conf exec metalog ${OPTS=-v} ```