forked from Github/frigate
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.
This commit is contained in:
@@ -58,7 +58,7 @@ readonly config_path="/config"
|
|||||||
|
|
||||||
if [[ -x "${config_path}/go2rtc" ]]; then
|
if [[ -x "${config_path}/go2rtc" ]]; then
|
||||||
readonly binary_path="${config_path}/go2rtc"
|
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
|
else
|
||||||
readonly binary_path="/usr/local/go2rtc/bin/go2rtc"
|
readonly binary_path="/usr/local/go2rtc/bin/go2rtc"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user