[−]Struct astral::thirdparty::slog::Logger
Logging handle used to execute logging statements
In an essence Logger
instance holds two pieces of information:
- drain - destination where to forward logging
Record
s for processing. - context - list of key-value pairs associated with it.
Root Logger
is created with a Drain
that will be cloned to every
member of it's hierarchy.
Child Logger
are built from existing ones, and inherit their key-value
pairs, which can be supplemented with additional ones.
Cloning existing loggers and creating new ones is cheap. Loggers can be freely passed around the code and between threads.
Logger
s are Sync+Send
- there's no need to synchronize accesses to them,
as they can accept logging records from multiple threads at once. They can
be sent to any thread. Because of that they require the Drain
to be
Sync+Sync
as well. Not all Drain
s are Sync
or Send
but they can
often be made so by wrapping in a Mutex
and/or Arc
.
Logger
implements Drain
trait. Any logging Record
delivered to
a Logger
functioning as a Drain
, will be delivered to it's Drain
with existing key-value pairs appended to the Logger
s key-value pairs.
By itself it's effectively very similar to Logger
being an ancestor
of Logger
that originated the logging Record
. Combined with other
Drain
s, allows custom processing logic for a sub-tree of a whole logging
tree.
Logger is parametrized over type of a Drain
associated with it (D
). It
default to type-erased version so Logger
without any type annotation
means Logger<Arc<SendSyncRefUnwindSafeDrain<Ok = (), Err = Never>>>
. See
Logger::root_typed
and Logger::to_erased
for more information.
Methods
impl<D> Logger<D> where
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
pub fn root<T>(
drain: D,
values: OwnedKV<T>
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: 'static + SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()>,
T: SendSyncRefUnwindSafeKV + 'static,
drain: D,
values: OwnedKV<T>
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: 'static + SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()>,
T: SendSyncRefUnwindSafeKV + 'static,
Build a root Logger
Root logger starts a new tree associated with a given Drain
. Root
logger drain must return no errors. See Drain::ignore_res()
and
Drain::fuse()
.
All children and their children (and so on), form one logging tree
sharing a common drain. See Logger::new
.
This version (as opposed to Logger:root_typed
) will take drain
and
made it into Arc<SendSyncRefUnwindSafeDrain<Ok = (), Err = Never>>
.
This is typically the most convenient way to work with Logger
s.
Use o!
macro to build OwnedKV
object.
#[macro_use] extern crate slog; fn main() { let _root = slog::Logger::root( slog::Discard, o!("key1" => "value1", "key2" => "value2"), ); }
pub fn root_typed<T>(drain: D, values: OwnedKV<T>) -> Logger<D> where
D: 'static + SendSyncUnwindSafeDrain<Err = NeverStruct, Ok = ()>,
T: SendSyncRefUnwindSafeKV + 'static,
D: 'static + SendSyncUnwindSafeDrain<Err = NeverStruct, Ok = ()>,
T: SendSyncRefUnwindSafeKV + 'static,
Build a root Logger
that retains drain
type
Unlike Logger::root
, this constructor retains the type of a drain
,
which allows highest performance possible by eliminating indirect call
on Drain::log
, and allowing monomorphization of Logger
and Drain
objects.
If you don't understand the implications, you should probably just ignore it.
See Logger:into_erased
and Logger::to_erased
for conversion from
type returned by this function to version that would be returned by
Logger::root
.
pub fn new<T>(&self, values: OwnedKV<T>) -> Logger<D> where
D: Clone,
T: SendSyncRefUnwindSafeKV + 'static,
D: Clone,
T: SendSyncRefUnwindSafeKV + 'static,
Build a child logger
Child logger inherits all existing key-value pairs from its parent and supplements them with additional ones.
Use o!
macro to build OwnedKV
object.
Drain cloning (D : Clone
requirement)
All children, their children and so on, form one tree sharing a
common drain. This drain, will be Clone
d when this method is called.
That is why Clone
must be implemented for D
in Logger<D>::new
.
For some Drain
types Clone
is cheap or even free (a no-op). This is
the case for any Logger
returned by Logger::root
and it's children.
When using Logger::root_typed
, it's possible that cloning might be
expensive, or even impossible.
The reason why wrapping in an Arc
is not done internally, and exposed
to the user is performance. Calling Drain::log
through an Arc
is
tiny bit slower than doing it directly.
#[macro_use] extern crate slog; fn main() { let root = slog::Logger::root(slog::Discard, o!("key1" => "value1", "key2" => "value2")); let _log = root.new(o!("key" => "value")); }
pub fn log(&self, record: &Record)
Log one logging Record
Use specific logging functions instead. See log!
macro
documentation.
pub fn list(&self) -> &OwnedKVList
Get list of key-value pairs assigned to this Logger
pub fn into_erased(
self
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: SendRefUnwindSafeDrain + 'static,
self
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: SendRefUnwindSafeDrain + 'static,
Convert to default, "erased" type:
Logger<Arc<SendSyncUnwindSafeDrain>>
Useful to adapt Logger<D : Clone>
to an interface expecting
Logger<Arc<...>>
.
Note that calling on a Logger<Arc<...>>
will convert it to
Logger<Arc<Arc<...>>>
which is not optimal. This might be fixed when
Rust gains trait implementation specialization.
pub fn to_erased(
&self
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: SendRefUnwindSafeDrain + 'static + Clone,
&self
) -> Logger<Arc<dyn SendSyncRefUnwindSafeDrain<Err = NeverStruct, Ok = ()> + 'static>> where
D: SendRefUnwindSafeDrain + 'static + Clone,
Create a copy with "erased" type
See into_erased
Trait Implementations
impl<D> Debug for Logger<D> where
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
impl<D> Drain for Logger<D> where
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct>,
type Ok = ()
Type returned by this drain Read more
type Err = NeverStruct
Type of potential errors that can be returned by this Drain
fn log(
&self,
record: &Record,
values: &OwnedKVList
) -> Result<<Logger<D> as Drain>::Ok, <Logger<D> as Drain>::Err>
&self,
record: &Record,
values: &OwnedKVList
) -> Result<<Logger<D> as Drain>::Ok, <Logger<D> as Drain>::Err>
fn is_enabled(&self, level: Level) -> bool
fn is_critical_enabled(&self) -> bool
Avoid: See is_enabled
fn is_error_enabled(&self) -> bool
Avoid: See is_enabled
fn is_warning_enabled(&self) -> bool
Avoid: See is_enabled
fn is_info_enabled(&self) -> bool
Avoid: See is_enabled
fn is_debug_enabled(&self) -> bool
Avoid: See is_enabled
fn is_trace_enabled(&self) -> bool
Avoid: See is_enabled
fn map<F, R>(self, f: F) -> R where
F: FnOnce(Self) -> R,
F: FnOnce(Self) -> R,
Pass Drain
through a closure, eg. to wrap into another Drain
. Read more
fn filter<F>(self, f: F) -> Filter<Self, F> where
F: FilterFn,
F: FilterFn,
Filter logging records passed to Drain
Read more
fn filter_level(self, level: Level) -> LevelFilter<Self>
Filter logging records passed to Drain
(by level) Read more
fn map_err<F, E>(self, f: F) -> MapError<Self, E> where
F: MapErrFn<Self::Err, E>,
F: MapErrFn<Self::Err, E>,
Map logging errors returned by this drain Read more
fn ignore_res(self) -> IgnoreResult<Self>
Ignore results returned by this drain Read more
fn fuse(self) -> Fuse<Self> where
Self::Err: Debug,
Self::Err: Debug,
Make Self
panic when returning any errors Read more
impl<D> Clone for Logger<D> where
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct> + Clone,
D: SendSyncUnwindSafeDrain<Ok = (), Err = NeverStruct> + Clone,
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> SendSyncUnwindSafe for T where
T: Send + Sync + UnwindSafe + ?Sized,
T: Send + Sync + UnwindSafe + ?Sized,
impl<T> SendSyncUnwindSafeDrain for T where
T: Drain + Send + Sync + UnwindSafe + ?Sized,
T: Drain + Send + Sync + UnwindSafe + ?Sized,
impl<T> SendSyncRefUnwindSafeDrain for T where
T: Drain + Send + Sync + RefUnwindSafe + ?Sized,
T: Drain + Send + Sync + RefUnwindSafe + ?Sized,
impl<T> SendRefUnwindSafeDrain for T where
T: Drain + Send + RefUnwindSafe + ?Sized,
T: Drain + Send + RefUnwindSafe + ?Sized,