logos-storage-nim/tests/logging_config.nim
richΛrd d65f32f819
chore: update libp2p to 2.0.0 (#1443)
Co-authored-by: Arnaud <arnaud@status.im>
2026-06-12 12:32:33 +00:00

11 lines
231 B
Nim

when not defined(nimscript):
import pkg/chronicles
proc ignoreLogging(level: LogLevel, message: LogOutputStr) =
discard
defaultChroniclesStream.output.writer = ignoreLogging
{.warning[UnusedImport]: off.}
{.used.}