├── .gitignore ├── LICENSE ├── README.md ├── b-log.sh ├── examples ├── 01_basic_example.png ├── 01_basic_example.sh ├── 02_log_to_file_and_syslog.png ├── 02_log_to_file_and_syslog.sh ├── 03_custom_level_and_template.png ├── 03_custom_level_and_template.sh └── example.sh └── test ├── default-log-levels.sh ├── multiple-inputs.sh ├── multiple-outputs.sh └── templates.sh /.gitignore: -------------------------------------------------------------------------------- 1 | log/ 2 | log.txt 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/README.md -------------------------------------------------------------------------------- /b-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/b-log.sh -------------------------------------------------------------------------------- /examples/01_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/01_basic_example.png -------------------------------------------------------------------------------- /examples/01_basic_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/01_basic_example.sh -------------------------------------------------------------------------------- /examples/02_log_to_file_and_syslog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/02_log_to_file_and_syslog.png -------------------------------------------------------------------------------- /examples/02_log_to_file_and_syslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/02_log_to_file_and_syslog.sh -------------------------------------------------------------------------------- /examples/03_custom_level_and_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/03_custom_level_and_template.png -------------------------------------------------------------------------------- /examples/03_custom_level_and_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/03_custom_level_and_template.sh -------------------------------------------------------------------------------- /examples/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/examples/example.sh -------------------------------------------------------------------------------- /test/default-log-levels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/test/default-log-levels.sh -------------------------------------------------------------------------------- /test/multiple-inputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/test/multiple-inputs.sh -------------------------------------------------------------------------------- /test/multiple-outputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/test/multiple-outputs.sh -------------------------------------------------------------------------------- /test/templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idelsink/b-log/HEAD/test/templates.sh --------------------------------------------------------------------------------