Struct reth_tracing::RethTracer

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

Tracer for application logging.

Manages the configuration and initialization of logging layers, including standard output, optional journald, and optional file logging.

Implementations§

source§

impl RethTracer

source

pub fn new() -> Self

Constructs a new Tracer with default settings.

Initializes with default stdout layer configuration. Journald and file layers are not set by default.

source

pub fn with_stdout(self, config: LayerInfo) -> Self

Sets a custom configuration for the stdout layer.

§Arguments
  • config - The LayerInfo to use for the stdout layer.
source

pub fn with_journald(self, filter: String) -> Self

Sets the journald layer filter.

§Arguments
  • filter - The filter to use for the journald layer.
source

pub fn with_file(self, config: LayerInfo, file_info: FileInfo) -> Self

Sets the file layer configuration and associated file info.

§Arguments
  • config - The LayerInfo to use for the file layer.
  • file_info - The FileInfo containing details about the log file.

Trait Implementations§

source§

impl Clone for RethTracer

source§

fn clone(&self) -> RethTracer

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 RethTracer

source§

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

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

impl Default for RethTracer

source§

fn default() -> Self

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

impl Tracer for RethTracer

source§

fn init(self) -> Result<Option<WorkerGuard>>

Initializes the logging system based on the configured layers.

This method sets up the global tracing subscriber with the specified stdout, journald, and file layers.

The default layer is stdout.

§Returns

An eyre::Result which is Ok with an optional WorkerGuard if a file layer is used, or an Err in case of an error during initialization.

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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,

source§

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

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 248 bytes