Skip to main content

PluginLogger

Struct PluginLogger 

Source
pub struct PluginLogger { /* private fields */ }
Expand description

A logger scoped to a specific plugin.

Obtained via Context::logger(). All messages are logged with target basalt::plugin::<name>, making them easy to filter in log output.

Methods accept impl Display, so formatting is deferred until the log level is checked — no allocation if the level is filtered.

§Example

registrar.on::<PlayerJoinedEvent>(Stage::Post, 0, |event, ctx| {
    let log = ctx.logger();
    log.info(format_args!("{} joined", event.info.username));
    log.debug("sending welcome message");
});

Implementations§

Source§

impl PluginLogger

Source

pub fn new(plugin_name: &str) -> Self

Creates a new logger for the given plugin name.

Source

pub fn error(&self, msg: impl Display)

Logs at ERROR level.

Source

pub fn warn(&self, msg: impl Display)

Logs at WARN level.

Source

pub fn info(&self, msg: impl Display)

Logs at INFO level.

Source

pub fn debug(&self, msg: impl Display)

Logs at DEBUG level.

Source

pub fn trace(&self, msg: impl Display)

Logs at TRACE level.

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, 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.