0.0.2 • Published 11 years ago
somata-logger v0.0.2
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 }", somethingUse .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"