nim-codex/tests/logging.nim
Eric Mastro 88caa011b6
[rest api] fix purchases documentation
Documentation in the REST OpenAPI spec were showing incorrect information about Purchasing endpoints.

Update the open api spec to reflect information about purchases, not requests.
2023-03-22 16:49:41 +11:00

10 lines
189 B
Nim

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