From b63d7b9f491dc90f95f5017bfc1da5a63c0b631c Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:53:40 -0800 Subject: [PATCH] Set test logging level to ERROR --- nim_chat_poc.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nim_chat_poc.nimble b/nim_chat_poc.nimble index 329bcf3..cc5537e 100644 --- a/nim_chat_poc.nimble +++ b/nim_chat_poc.nimble @@ -39,7 +39,7 @@ proc test(name: string, params = "-d:chronicles_log_level=DEBUG", lang = "c") = exec "build/" & name task tests, "Build & run tests": - test "all_tests", "-d:chronicles_log_level=DEBUG -d:chronosStrictException" + test "all_tests", "-d:chronicles_log_level=ERROR -d:chronosStrictException" task waku_example, "Build Waku based simple example": let name = "waku_example"