From bc16ad1f135022ac1748ec9e57bd232155246136 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Thu, 30 Mar 2023 22:03:42 -0300 Subject: [PATCH] Fix small warning not appearing in go2rtc logs in UI (#5882) I always forget that for the logs to appear there, they should not be sent to stderr but stdout. --- docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run index be2e43491..85c8f9526 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/go2rtc/run @@ -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