Tracing Formatters
This is a simple formatting module for Tracing that allows for easily setting what type of logging output format should be used.
Formatters
There is currently implemented 2 formaters both with basic functionality, and still a work in progress.
Syslog
To use syslog the following can be done.
use Syslog;
let formatting_syslog = new;
let subscriber = default.with;
set_global_default.expect;
Bunyan
To use Bunyan the following can be done.
use Bunyan;
let formatting_bunyan = new;
let subscriber = default.with;
set_global_default.expect;