mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-09 20:45:38 +00:00
11 lines
230 B
Nim
11 lines
230 B
Nim
when not defined(nimscript):
|
|
import pkg/chronicles
|
|
|
|
proc ignoreLogging(level: LogLevel, message: LogOutputStr) =
|
|
discard
|
|
|
|
defaultChroniclesStream.output.writer = ignoreLogging
|
|
|
|
{.warning[UnusedImport]:off.}
|
|
{.used.}
|