Skip to content

Commit

Permalink
Fix small warning not appearing in go2rtc logs in UI (blakeblackshear…
Browse files Browse the repository at this point in the history
…#5882)

I always forget that for the logs to appear there, they should not be sent to stderr but stdout.
  • Loading branch information
felipecrs committed Mar 31, 2023
1 parent 1b8cd10 commit bc16ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ readonly config_path="/config"

if [[ -x "${config_path}/go2rtc" ]]; then
readonly binary_path="${config_path}/go2rtc"
echo "[WARN] Using go2rtc binary from '${binary_path}' instead of the embedded one" >&2
echo "[WARN] Using go2rtc binary from '${binary_path}' instead of the embedded one"
else
readonly binary_path="/usr/local/go2rtc/bin/go2rtc"
fi
Expand Down

0 comments on commit bc16ad1

Please sign in to comment.