ts_init 0.2.0

A simple template for Rust project with tracing
Documentation

Initializes logging based on the specified environment and output configurations.

This function configures the global logging behavior according to the specified outputs and the environment string provided. It supports conditional logging to stderr, files, or journald based on the inputs.

Arguments

  • outputs - A vector of Option<String> where each element represents an optional output destination. Supported values are file paths and "journald".
  • env - A string slice that represents the logging environment. It can be a simple level string like "debug" or a detailed filter like "my_crate=info,my_crate::module=debug".

Examples

// Output info log of current crate to stderr
ts_init::init(ts_init::env_filter_directive!("info"));