5 unstable releases
0.2.0 | Jul 18, 2020 |
---|---|
0.1.2 | Oct 15, 2019 |
0.1.1 | Aug 22, 2019 |
0.1.0 | Aug 22, 2019 |
0.0.1 | Aug 12, 2019 |
#872 in Command-line interface
15KB
217 lines
Clout
Clout is a command line output library.
It provides a similar interface to the logging crate but with a different focus:
- clout's output is opinionated and not pluggable like logging
- clout provides output with sensible settings for use in command line tools
- colours are supported for different message levels
- output is always to stdout (for now)
- different output levels are selected using settings aligned with typical command line argument conventions
Many libraries already output messages to the logging framework, and you generally don't want all these messages to get displayed to the end user. Clout allows you to generate output using a logging-style API without having to filter all these messages. (In fact you can use clout and logging together eg. by sending the logging messages to a file)
clout includes additional levels between Warn
and Info
. Status
is intended
for most output messages, and Success
is intended to indicate success.
Separating Info
and Status
is because typically CLI tools provide 3 levels of verbosity
(-v
, -vv
, and -vvv
is a common practice) but logging only provides two levels below info.
Quickstart Usage
Setup
To use clout with the default settings:
clout::init()
.done()
.expect("clout failed to init");
This will output messages at Status
level or higher, and will
use terminal colours when available.
Messages
Macros similar to logging can be used to output messages.
Clout must be initialised before any messages are output.
Six levels are available - see the documentation for clout::Level
for
guidance about which level to use.
error!("an error");
warn!("a warining");
success!("a success");
status!("a status message");
info!("information message");
debug!("debug message");
trace!("tracing message");
If you're using the logging
crate at the same time it is suggested to use
these via a clout::
path.
Formatting
The macros support the usual formatting based on the format!
macro.
status!("a formatted {}", "message");
More Options
clout::init()
.with_verbose(4)
.with_quiet(false)
.with_silent(false)
.with_use_color(clout::UseColor::Auto)
.done()
.expect("clout failed to init");
with_verbose
lets you select a verbosity level from a number. This is useful to support-v
,-vv
etc.with_quiet
will hide everything exceptError
messageswith_silent
will silence everythingwith_use_color
will control when clout uses colors
For more details see the documentation for clout::Builder
.
Shutdown
Clout can be shutdown to prevent memory leaks if you care about that.
clout::shutdown().expect("failed to shutdown clout");
Dependencies
~0–6.5MB
~39K SLoC