From da7bada6b30474687f825dd03e3dd1494b11ead3 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Fri, 26 Sep 2025 18:40:57 -0700 Subject: [PATCH] fix nim_chat_poc.nim errors --- nim_chat_poc.nimble | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nim_chat_poc.nimble b/nim_chat_poc.nimble index 03c49da..b78b33c 100644 --- a/nim_chat_poc.nimble +++ b/nim_chat_poc.nimble @@ -44,4 +44,8 @@ task nim_chat_poc, "Build Waku based simple example": task tui, "Build Waku based simple example": let name = "tui" - buildBinary name, "examples/", " -d:chronicles_enabled=off -d:chronicles_log_level='INFO' -d:chronicles_sinks=textlines[file]" + buildBinary name, "examples/", " -d:chronicles_enabled=on -d:chronicles_log_level='INFO' -d:chronicles_sinks=textlines[file]" + +task bot_echo, "Build the EchoBot example": + let name = "bot_echo" + buildBinary name, "examples/", "-d:chronicles_log_level='INFO' -d:chronicles_disabled_topics='waku node' "