set log level to DEBUG for tests in waku.nimble

This commit is contained in:
Ivan FB 2026-04-06 00:21:59 +02:00
parent c6adab7600
commit 3839f1aa23
No known key found for this signature in database
GPG Key ID: DF0C67A04C543270

View File

@ -367,7 +367,7 @@ task libWakuIOS, "Build the mobile bindings for iOS":
let extraParams = "-d:chronicles_log_level=ERROR"
buildMobileIOS srcDir, extraParams
proc test(name: string, params = "-d:chronicles_log_level=TRACE") =
proc test(name: string, params = "-d:chronicles_log_level=DEBUG") =
# XXX: When running `> NIM_PARAMS="-d:chronicles_log_level=INFO" make test2`
# I expect compiler flag to be overridden, however it stays with whatever is
# specified here.
@ -376,7 +376,7 @@ proc test(name: string, params = "-d:chronicles_log_level=TRACE") =
### Waku common tasks
task testcommon, "Build & run common tests":
test "all_tests_common", "-d:chronicles_log_level=TRACE -d:chronosStrictException"
test "all_tests_common", "-d:chronicles_log_level=DEBUG -d:chronosStrictException"
### Waku tasks
task wakunode2, "Build Waku v2 cli node":