# Logger with smart widget for the tui
crate
## Demo of the widget
## Documentation
## Features
log
crateslog
support, providing a Drain to integrate into your slog
infrastructure[ ] Simultaneous modification of all targets' display/hot logging loglevel by key command
Smart widget consists of two widgets. Left is the target selector widget and on the right side the logging messages view scrolling up. The target selector widget can be hidden/shown during runtime via key command. The key command to be provided to the TuiLoggerWidget via transition() function.
The target selector widget looks like this:
It controls:
Capturing of log messages by the logger
Selection of levels for display in the logging message view
The target selector widget consists of two columns:
Code EWIDT: E stands for Error, W for Warn, Info, Debug and Trace.
Target of the log events can be defined in the log e.g. warn!(target: "demo", "Log message");
| KEY | ACTION
|:------:|-----------------------------------------------------------|
| h
| Toggles target selector widget hidden/visible
| f
| Toggle focus on the selected target only
| UP
| Select previous target in target selector widget
| DOWN
| Select next target in target selector widget
| LEFT
| Reduce SHOWN (!) log messages by one level
| RIGHT
| Increase SHOWN (!) log messages by one level
| -
| Reduce CAPTURED (!) log messages by one level
| +
| Increase CAPTURED (!) log messages by one level
| SPACE
| Toggles hiding of targets, which have logfilter set to off
The mapping of key to action has to be done in the application. The respective TuiWidgetEvent has to be provided to the transition() function of TuiWidgetState
```
extern crate log; //use tui_logger;
fn main() { // Early initialization of the logger
// Set maxloglevel to Trace tuilogger::initlogger(log::LevelFilter::Trace).unwrap();
// Set default level for unknown targets to Trace tuilogger::setdefault_level(log::LevelFilter::Trace);
// code.... } ```
For use of the widget please check examples/demo.rs
slog
supporttui-logger
provides a TuiSlogDrain which implements slog::Drain
and will route all records
it receives to the tui-logger
widget