Cargo Features

[dependencies]
test-log = { version = "0.2.16", default-features = false, features = ["trace", "log", "color", "unstable"] }
default = color, log

These default features are set whenever test-log is added without default-features = false somewhere in the dependency tree.

trace

Enables tracing-subscriber, trace of test-log-macros

log default

Enables env_logger, log of test-log-macros, tracing-log of optional tracing-subscriber

color default

Enables auto-color of optional env_logger, ansi of optional tracing-subscriber

unstable

Enable unstable features. These are generally exempt from any semantic versioning guarantees.

Enables unstable of test-log-macros