pub trait LogAppender: Send + Sync {
// Required methods
fn log(&self, log: Log);
fn audit(&self, log: AuditLog);
fn span_event(&self, log: LogSpanEvent);
fn pointless(&self, log: PointlessLog);
}Required Methods§
fn log(&self, log: Log)
fn audit(&self, log: AuditLog)
fn span_event(&self, log: LogSpanEvent)
Sourcefn pointless(&self, log: PointlessLog)
fn pointless(&self, log: PointlessLog)
PointlessLog is used for error diagnosis of the logging system itself, particularly where there is parsing error due to a bad point