Struct pyo3_log::Logger[][src]

pub struct Logger { /* fields omitted */ }
Expand description

The Logger

The actual Logger that can be installed into the Rust side and will send messages over to Python.

It can be either created directly and then installed, passed to other aggregating log systems, or the init or try_init functions may be used if defaults are good enough.

Implementations

Creates a new logger.

It defaults to having a filter for Debug.

Installs this logger as the global one.

When installing, it also sets the corresponding maximum level, constructed using the filters in this logger.

Provides the reset handle of this logger.

Note that installing the logger also returns a reset handle. This function is available if, for example, the logger will be passed to some other logging system that connects multiple loggers together.

Configures the default logging filter.

Log messages will be filtered according a filter. If one provided by a filter_target matches, it takes preference. If none matches, this one is used.

The default filter if none set is Debug.

Sets a filter for a specific target, overriding the default.

This’ll match targets with the same name and all the children in the module hierarchy. In case multiple match, the most specific one wins.

With this configuration, modules will log in the following levels:


Logger::default()
    .filter(LevelFilter::Warn)
    .filter_target("xy".to_owned(), LevelFilter::Debug)
    .filter_target("xy::aa".to_owned(), LevelFilter::Trace);
  • whatever => Warn
  • xy => Debug
  • xy::aa => Trace
  • xy::aabb => Debug

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Determines if a log message with the specified metadata would be logged. Read more

Logs the Record. Read more

Flushes any buffered records.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.