Struct LoggingLayer
pub struct LoggingLayer<I = DefaultLoggingInterceptor> {
logger: I,
}
Expand description
Add log for every operation.
§Logging
- OpenDAL will log in structural way.
- Every operation will start with a
started
log entry. - Every operation will finish with the following status:
succeeded
: the operation is successful, but might have more to take.finished
: the whole operation is finished.failed
: the operation returns an unexpected error.
- The default log level while expected error happened is
Warn
. - The default log level while unexpected failure happened is
Error
.
§Examples
let _ = Operator::new(services::Memory::default())?
.layer(LoggingLayer::default())
.finish();
Ok(())
§Output
OpenDAL is using log
for logging internally.
To enable logging output, please set RUST_LOG
:
RUST_LOG=debug ./app
To config logging output, please refer to Configure Logging:
RUST_LOG="info,opendal::services=debug" ./app
§Logging Interceptor
You can implement your own logging interceptor to customize the logging behavior.
#[derive(Debug, Clone)]
struct MyLoggingInterceptor;
impl LoggingInterceptor for MyLoggingInterceptor {
fn log(
&self,
info: &raw::AccessorInfo,
operation: raw::Operation,
context: &[(&str, &str)],
message: &str,
err: Option<&Error>,
) {
// log something
}
}
let _ = Operator::new(services::Memory::default())?
.layer(LoggingLayer::new(MyLoggingInterceptor))
.finish();
Ok(())
Fields§
§logger: I
Implementations§
§impl LoggingLayer
impl LoggingLayer
pub fn new<I>(logger: I) -> LoggingLayer<I>where
I: LoggingInterceptor,
pub fn new<I>(logger: I) -> LoggingLayer<I>where
I: LoggingInterceptor,
Create the layer with specific logging interceptor.
Trait Implementations§
§impl<I> Debug for LoggingLayer<I>where
I: Debug,
impl<I> Debug for LoggingLayer<I>where
I: Debug,
§impl Default for LoggingLayer
impl Default for LoggingLayer
§fn default() -> LoggingLayer
fn default() -> LoggingLayer
Returns the “default value” for a type. Read more
§impl<A, I> Layer<A> for LoggingLayer<I>where
A: Access,
I: LoggingInterceptor,
impl<A, I> Layer<A> for LoggingLayer<I>where
A: Access,
I: LoggingInterceptor,
§type LayeredAccess = LoggingAccessor<A, I>
type LayeredAccess = LoggingAccessor<A, I>
The layered accessor that returned by this layer.
§fn layer(&self, inner: A) -> <LoggingLayer<I> as Layer<A>>::LayeredAccess
fn layer(&self, inner: A) -> <LoggingLayer<I> as Layer<A>>::LayeredAccess
Intercept the operations on the underlying storage.
Auto Trait Implementations§
impl<I> Freeze for LoggingLayer<I>where
I: Freeze,
impl<I> RefUnwindSafe for LoggingLayer<I>where
I: RefUnwindSafe,
impl<I> Send for LoggingLayer<I>where
I: Send,
impl<I> Sync for LoggingLayer<I>where
I: Sync,
impl<I> Unpin for LoggingLayer<I>where
I: Unpin,
impl<I> UnwindSafe for LoggingLayer<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request