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 ofOption<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
init;