Struct glib::GlibLogger

source ·
pub struct GlibLogger { /* private fields */ }
Expand description

An implementation of a log compatible logger which logs over glib logging facilities.

In order to use this type, glib must be built with the log feature enabled.

Use this if you want to use glib as the main logging output in your application, and want to route all logging happening through the log crate to glib logging. If you want the opposite, see rust_log_handler.

NOTE: This should never be used when rust_log_handler has been registered as a default glib log handler, otherwise a stack overflow will occur.

Example:

static glib_logger: glib::GlibLogger = glib::GlibLogger::new(
    glib::GlibLoggerFormat::Plain,
    glib::GlibLoggerDomain::CrateTarget,
);

log::set_logger(&glib_logger);
log::set_max_level(log::LevelFilter::Debug);

log::info!("This line will get logged by glib");

Implementations§

source§

impl GlibLogger

source

pub const fn new(format: GlibLoggerFormat, domain: GlibLoggerDomain) -> Self

Creates a new instance of GlibLogger. See documentation of GlibLogger for more information.

Example:

static glib_logger: glib::GlibLogger = glib::GlibLogger::new(
    glib::GlibLoggerFormat::Plain,
    glib::GlibLoggerDomain::CrateTarget,
);

log::set_logger(&glib_logger);
log::set_max_level(log::LevelFilter::Debug);

log::info!("This line will get logged by glib");

Trait Implementations§

source§

impl Debug for GlibLogger

source§

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

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

impl Log for GlibLogger

source§

fn enabled(&self, _: &Metadata<'_>) -> bool

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

fn log(&self, record: &Record<'_>)

Logs the Record. Read more
source§

fn flush(&self)

Flushes any buffered records.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.