Crates.io | lloggs |
lib.rs | lloggs |
version | |
source | src |
created_at | 2025-02-03 01:02:51.040563+00 |
updated_at | 2025-02-04 01:03:45.446145+00 |
description | Logging configuration for clap applications |
homepage | |
repository | https://github.com/passcod/lloggs |
max_upload_size | |
id | 1540005 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Logging configuration for clap applications.
This library provides a common set of flags for controlling logging in a CLI application, and
a default implementation for configuring logging based on those flags using non-blocking
tracing-subscriber when the tracing
feature is enabled
(which is the default).
It also supports configuring logging before parsing arguments, to allow logging to be set up
using environment variables such as RUST_LOG
or DEBUG_INVOCATION
, respects the NO_COLOR
environment variable (https://no-color.org), and adjusts defaults when it detects systemd.
use lloggs::{LoggingArgs, PreArgs};
use clap::Parser;
#[derive(Debug, Parser)]
struct Args {
#[command(flatten)]
logging: LoggingArgs,
// Your other arguments here
}
fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
let mut _guard = PreArgs::parse().setup()?;
let args = Args::parse();
if _guard.is_none() {
_guard = Some(args.logging.setup(|v| match v {
0 => "info",
1 => "debug",
_ => "trace",
})?);
}
// Your application logic here
Ok(())
}