Types
LoggingError = object of CatchableError
Procs
proc log(msg: string) {....raises: LoggingError, tags: [].}
- Log arbitrary message with debug level if the app is compiled with -d:normDebug.
proc log(qry, paramstr: string) {....raises: {ValueError, LoggingError}, tags: [].}
- Log query with params with debug level if the app is compiled with -d:normDebug.