You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lumberjack is a logging interface for shell scripts.
About
Lumberjack handles your logs for you. When you set a logfile and log level, it is linked to the process ID of the script in which it is run, so that further calls need only contain the message to append to the logfile.
Installation
Requirements
Although lumberjack can be used within any script, ZSH 5+ must be installed and in your $PATH in order to run it.
Once done, further calls need only contain the level at which that log applies, and the message.
lj critical ‘Something went wrong’
The level is any one of emergency, alert, critical, error, warning, notice, info or debug. If the level is not set, the default is notice. Likewise, when logging you can omit the first parameter, and a level of notice is assumed.
lj 'This is a notice'
If a message is logged at a level lower than that which is set, it is gracefully ignored. This allows you to dynamically set the log level based on parameters passed to your script.
#!/usr/bin/env zsh# Parse CLI options
zparseopts -D v=verbose -verbose=verbose
# Set the log levellocal level=critical
[[ $verbose ]] && level=notice
# Initialise lumberjack
lj --file ~/log --level $level
lj 'This is a notice'
In the above example, running script.zsh would result in nothing being output to the log. Running script.zsh --verbose would increase the log level, allowing the notice to be appended to the log file.
TODO
Allow log format to be modified
Add additional drivers for send logs to services like Sentry etc.
License
Copyright (c) 2016 James Dinsdale hi@molovo.co (molovo.co)
Lumberjack is licensed under The MIT License (MIT)