nim-morelogging icon indicating copy to clipboard operation
nim-morelogging copied to clipboard

Problem of using logging in side onUnhandledException

Open geohuz opened this issue 4 years ago • 0 comments

I have the following code:

onUnhandledException = proc(msg: string) =
  log.error("Uncaught error", {"MESSAGE": msg})
  discard

I can only see the error message in the syslog, no "Uncaught error" string

geohuz avatar Sep 19 '19 13:09 geohuz