Skip to content
This repository was archived by the owner on Jun 5, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (28 loc) · 691 Bytes

File metadata and controls

46 lines (28 loc) · 691 Bytes

simplelog

A deadly simple log package.

Perform differently in different build modes:

when not defined(release) and not defined(js):

debug

when defined(release): (without filename and number of line)

debug

Choose your own timer:

# demo.nim

import std / times

import simplelog

simplelog.timer =
  proc(): string =
    $now().utc

when isMainModule:
  debug("different timer")
nim c -r demo.nim

output:

2023-06-02T08:02:33Z [DEBUG] E:\projects\simplelog\demo.nim:12 different timer

todo:

  • Log level
  • ...whatever(lazy I am)