pub struct LogSpecification { /* private fields */ }
Expand description

Immutable struct that defines which loglines are to be written, based on the module, the log level, and the text.

Providing the loglevel specification via String (LogSpecification::parse and LogSpecification::env) works essentially like with env_logger, but we are a bit more tolerant with spaces. Its functionality can be described with some Backus-Naur-form:

<log_level_spec> ::= single_log_level_spec[{,single_log_level_spec}][/<text_filter>]
<single_log_level_spec> ::= <path_to_module>|<log_level>|<path_to_module>=<log_level>
<text_filter> ::= <regex>
  • Examples:

    • "info": all logs with info, warn, or error level are written
    • "crate1": all logs of this crate are written, but nothing else
    • "warn, crate2::mod_a=debug, mod_x::mod_y=trace": all crates log warnings and errors, mod_a additionally debug messages, and mod_x::mod_y is fully traced
  • If you just specify the module, without log_level, all levels will be traced for this module.

  • If you just specify a log level, this will be applied as default to all modules without explicit log level assigment. (You see that for modules named error, warn, info, debug or trace, it is necessary to specify their loglevel explicitly).

  • The module names are compared as Strings, with the side effect that a specified module filter affects all modules whose name starts with this String.
    Example: "foo" affects e.g.

    • foo
    • foo::bar
    • foobaz (!)
    • foobaz::bar (!)

The optional text filter is applied for all modules.

Note that external module names are to be specified like in "extern crate ...", i.e., for crates with a dash in their name this means: the dash is to be replaced with the underscore (e.g. karl_heinz, not karl-heinz). See https://github.com/rust-lang/rfcs/pull/940/files for an explanation of the different naming conventions in Cargo (packages allow hyphen) and rustc (“extern crate” does not allow hyphens).

Implementations§

source§

impl LogSpecification

source

pub fn off() -> Self

Returns a LogSpecification where all log output is switched off.

source

pub fn error() -> Self

Returns a LogSpecification where the global tracelevel is set to LevelFilter::Error.

source

pub fn warn() -> Self

Returns a LogSpecification where the global tracelevel is set to LevelFilter::Warn.

source

pub fn info() -> Self

Returns a LogSpecification where the global tracelevel is set to LevelFilter::Info.

source

pub fn debug() -> Self

Returns a LogSpecification where the global tracelevel is set to LevelFilter::Debug.

source

pub fn trace() -> Self

Returns a LogSpecification where the global tracelevel is set to LevelFilter::Trace.

source

pub fn parse<S: AsRef<str>>(spec: S) -> Result<Self, FlexiLoggerError>

Returns a log specification from a String.

§Errors

FlexiLoggerError::Parse if the input is malformed.

source

pub fn env() -> Result<Self, FlexiLoggerError>

Returns a log specification based on the value of the environment variable RUST_LOG, or an empty one.

§Errors

FlexiLoggerError::Parse if the input is malformed.

source

pub fn env_or_parse<S: AsRef<str>>( given_spec: S ) -> Result<Self, FlexiLoggerError>

Returns a log specification based on the value of the environment variable RUST_LOG, if it exists and can be parsed, or on the given String.

§Errors

FlexiLoggerError::Parse if the given spec is malformed.

source

pub fn builder() -> LogSpecBuilder

Creates a LogSpecBuilder, which allows building a log spec programmatically.

source

pub fn from_toml<S: AsRef<str>>(s: S) -> Result<Self, FlexiLoggerError>

Available on crate feature specfile only.

Reads a log specification from an appropriate toml document.

This method is only avaible with feature specfile.

§Errors

FlexiLoggerError::Parse if the input is malformed.

source

pub fn to_toml(&self, w: &mut dyn Write) -> Result<(), FlexiLoggerError>

Available on crate feature specfile only.

Serializes itself in toml format.

This method is only avaible with feature specfile.

§Errors

FlexiLoggerError::SpecfileIo if writing fails.

source

pub fn enabled(&self, level: Level, writing_module: &str) -> bool

Returns true if messages on the specified level from the writing module should be written.

source

pub fn module_filters(&self) -> &Vec<ModuleFilter>

Provides a reference to the module filters.

source

pub fn text_filter(&self) -> Option<&Regex>

Provides a reference to the text filter.

This method is only avaible if the default feature textfilter is not switched off.

Trait Implementations§

source§

impl Clone for LogSpecification

source§

fn clone(&self) -> LogSpecification

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LogSpecification

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LogSpecification

source§

fn default() -> LogSpecification

Returns the “default value” for a type. Read more
source§

impl Display for LogSpecification

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TryFrom<&String> for LogSpecification

§

type Error = FlexiLoggerError

The type returned in the event of a conversion error.
source§

fn try_from(value: &String) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<&str> for LogSpecification

§

type Error = FlexiLoggerError

The type returned in the event of a conversion error.
source§

fn try_from(value: &str) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more