From fca3b034c2a5aef2856d8fccbdf37d2a6c18dc63 Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Mon, 31 Mar 2025 13:18:58 +0200 Subject: [PATCH] waku.nimble force compile logs with TRACE log level by default (#3348) --- waku.nimble | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/waku.nimble b/waku.nimble index 6cf804098..9c0e819fb 100644 --- a/waku.nimble +++ b/waku.nimble @@ -163,14 +163,28 @@ task libwakuStatic, "Build the cbindings waku node library": let name = "libwaku" buildLibrary name, "library/", - """-d:chronicles_line_numbers -d:chronicles_runtime_filtering=on -d:chronicles_sinks="textlines,json" -d:chronicles_default_output_device=Dynamic -d:chronicles_disabled_topics="eth,dnsdisc.client" --warning:Deprecated:off --warning:UnusedImport:on """, + """-d:chronicles_line_numbers \ + -d:chronicles_runtime_filtering=on \ + -d:chronicles_sinks="textlines,json" \ + -d:chronicles_default_output_device=Dynamic \ + -d:chronicles_disabled_topics="eth,dnsdisc.client" \ + --warning:Deprecated:off \ + --warning:UnusedImport:on \ + -d:chronicles_log_level=TRACE """, "static" task libwakuDynamic, "Build the cbindings waku node library": let name = "libwaku" buildLibrary name, "library/", - """-d:chronicles_line_numbers -d:chronicles_runtime_filtering=on -d:chronicles_sinks="textlines,json" -d:chronicles_default_output_device=Dynamic -d:chronicles_disabled_topics="eth,dnsdisc.client" --warning:Deprecated:off --warning:UnusedImport:on """, + """-d:chronicles_line_numbers \ + -d:chronicles_runtime_filtering=on \ + -d:chronicles_sinks="textlines,json" \ + -d:chronicles_default_output_device=Dynamic \ + -d:chronicles_disabled_topics="eth,dnsdisc.client" \ + --warning:Deprecated:off \ + --warning:UnusedImport:on \ + -d:chronicles_log_level=TRACE """, "dynamic" ### Mobile Android