A flexible, reusable logging module for Bash scripts that provides standardized logging functionality with various configuration options.
- Standard syslog log levels (DEBUG, INFO, WARN, ERROR, CRITICAL, etc.)
- Console output with color-coding by severity
- Optional file output
- Optional systemd journal logging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This gist includes the following sample files: | |
| - _config.yml | |
| - Gemfile | |
| - template Markdown file with Front Matters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ----------------------------------------------------------------- | |
| # .gitignore | |
| # Forked from below source | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20181206 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore | |
| # to download this file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Add custom color schemes to this array. | |
| // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes | |
| "schemes": [ | |
| { | |
| "name" : "Campbell", | |
| "background" : "#0C0C0C", | |
| "black" : "#0C0C0C", | |
| "blue" : "#0037DA", | |
| "brightBlack" : "#767676", | |
| "brightBlue" : "#3B78FF", |