flexi_logger 0.27.1

An easy-to-configure and flexible logger that writes logs to stderr or stdout and/or to files. It allows custom logline formats, and it allows changing the log specification at runtime. It also allows defining additional log streams, e.g. for alert or security messages.
Documentation
[dependencies.chrono]
default-features = false
features = ["clock"]
version = "0.4.22"

[dependencies.crossbeam-channel]
optional = true
version = "0.5"

[dependencies.crossbeam-queue]
optional = true
version = "0.3"

[dependencies.flate2]
optional = true
version = "1.0"

[dependencies.glob]
version = "0.3"

[dependencies.hostname]
optional = true
version = "0.3"

[dependencies.is-terminal]
optional = true
version = "0.4"

[dependencies.lazy_static]
version = "1.4"

[dependencies.log]
features = ["std"]
version = "0.4"

[dependencies.notify-debouncer-mini]
default-features = false
optional = true
version = "0.3"

[dependencies.nu-ansi-term]
optional = true
version = "0.49"

[dependencies.regex]
optional = true
version = "1.1"

[dependencies.serde]
optional = true
version = "1.0"

[dependencies.serde_derive]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.toml]
optional = true
version = "0.8"

[dependencies.tracing]
optional = true
version = "0.1.36"

[dependencies.tracing-subscriber]
features = ["env-filter"]
optional = true
version = "0.3"
[dev-dependencies.either]
version = "1.9"

[dev-dependencies.flate2]
version = "1.0"

[dev-dependencies.serde_derive]
version = "1.0"

[dev-dependencies.tracing]
version = "0.1.36"

[dev-dependencies.version-sync]
version = "0.9"

[features]
async = ["dep:crossbeam-channel", "dep:crossbeam-queue"]
colors = ["dep:nu-ansi-term", "is-terminal"]
compress = ["dep:flate2"]
default = ["colors", "textfilter"]
dont_minimize_extra_stacks = []
specfile = ["specfile_without_notification", "dep:notify-debouncer-mini"]
specfile_without_notification = ["dep:serde", "dep:toml", "dep:serde_derive"]
syslog_writer = ["dep:libc", "dep:hostname"]
textfilter = ["dep:regex"]
trc = ["async", "specfile", "dep:tracing", "dep:tracing-subscriber"]

[lib]
doctest = false

[package]
authors = ["emabee <meinolf.block@sap.com>"]
categories = ["development-tools::debugging"]
description = "An easy-to-configure and flexible logger that writes logs to stderr or stdout and/or to files. It allows custom logline formats, and it allows changing the log specification at runtime. It also allows defining additional log streams, e.g. for alert or security messages."
documentation = "https://docs.rs/flexi_logger"
edition = "2021"
homepage = "https://crates.io/crates/flexi_logger"
keywords = ["file", "logger"]
license = "MIT OR Apache-2.0"
name = "flexi_logger"
readme = "README.md"
repository = "https://github.com/emabee/flexi_logger"
rust-version = "1.66.0"
version = "0.27.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(linux)".dependencies.libc]
optional = true
version = "^0.2.50"