somata-logger
v0.0.2
Published
shortcut for logging to a local logger service
Downloads
3
Readme
somata-logger
Logger service and a client helper library to publish to this service.
Usage
Require the client library and give it a convenient name:
slog = require 'somata-logger'
Basic tagged output:
# Arguments: tag, string
slog 'doSomething', "Something was done."
Tagged output with data:
# Arguments: tag, string, data
slog 'getSomething', "Something was gotten: #{ something.id }", something
Use .s
, .i
, .d
, .e
, .w
for success, info, debug, error, and warning log "kinds":
slog.s 'somethingHappened', "Something good happened"
slog.e 'somethingHappened', "Something terrible happened"