pub trait LogSink {
// Required methods
fn append(&mut self, record: &LogRecord) -> Result<(), FrenError>;
fn path(&self) -> Option<&Path>;
}Expand description
Trait for sinks that record rename events. The default implementation
is JsonlLogSink; tests can use NullLogSink.