log to write traces in your code:
debug!("some nice message to help debugging");
info!("information");
warn!("o_O");
error!("boom");
And env-logger to be able to filter them.
Like the original, it can be customized at run time with environment variables.
Let me show you some examples as screenshots
I hope it will be useful to some of you.