re-enable debug logging in codex nodes

Since the HttpClient now supports async, re-enable debug logging in the Codex nodes
This commit is contained in:
Eric 2025-03-24 15:09:20 +11:00
parent fc801f9db7
commit f09c4357c9
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View File

@ -186,9 +186,9 @@ template multinodesuite*(name: string, body: untyped) =
" because logfile path could not be obtained: " & e.msg,
e,
)
# TODO: uncomment once HttpClient has been asyncified
# when CodexLogLevel != "":
# config.addCliOption("--log-level", CodexLogLevel)
when CodexLogLevel != "":
config.addCliOption("--log-level", CodexLogLevel)
var apiPort, discPort: int
withLock(codexPortLock):

View File

@ -32,6 +32,7 @@ const TestConfigs =
# Echoes stdout from Hardhat process
const DebugHardhat {.booldefine.} = false
# When true, shows all TRACE logs in Codex nodes' chronicles logs
const NoCodexLogFilters {.booldefine.} = false
# Shows test status updates at time intervals. Useful for running locally with
# active terminal interaction. Set to false for unattended runs, eg CI.