tracing-fmt-smart-writer
Smarter writer builder for tracing-subscriber's fmt module Version corresponds to major tracing-subscriber version.
Usage
use ;
builder.with_writer
.init;
Platform selection
Android
Writes into logcat
Level map (tracing to logcat)
ERROR
->ERROR
;WARN
->WARN
;INFO
->INFO
;DEBUG
->DEBUG
;TRACE
->VERBOSE
;
Web
Writes using console
Level map (tracing to console)
ERROR
->console.error
;WARN
->console.warn
;INFO
->console.info
;DEBUG
->console.debug
;TRACE
->console.debug
;
Others
Writes into stdout