A simple nimble package to log execution time
timelog("my_identifier"):
callMyProc()It is possible to hide the timing behind a define. Doing so will only log if -d:mydefine is passed to the Nim compiler
timelog("my_identifier", mydefine):
callMyProc()nimble install timelog
https://clonkk.github.io/timelog/
Generate documentation nimble doc src/timelog.nim --outdir:docs/