fix log-file-handler

This commit is contained in:
Ned Wright 2025-01-15 12:22:16 +00:00
parent 9a516899e8
commit abdee954bb
2 changed files with 2 additions and 2 deletions

View File

@ -527,7 +527,7 @@ Debug::preload()
active_streams["FOG"] = make_shared<DebugFogStream>();
string branch = Version::getBranch();
if (branch == "master" || branch.substr(0, 6) == "hotfix") {
if (branch == "open-source" || branch == "master" || branch.substr(0, 6) == "hotfix") {
should_assert_optional = false;
} else {
should_assert_optional = true;

View File

@ -7,5 +7,5 @@ while true; do
sleep 5
continue
fi
tail -q -f /var/log/nano_agent/cp-nano-http-transaction-handler.log? >> /proc/1/fd/1
tail -q -f /var/log/nano_agent/cp-nano-http-transaction-handler.log* >> /proc/1/fd/1
done