Struct tikv_util::logger::file_log::RotatingFileLogger[][src]

pub struct RotatingFileLogger {
    path: PathBuf,
    file: File,
    rename: Box<dyn Send + Fn(&Path) -> Result<PathBuf>>,
    rotators: Vec<Box<dyn Rotator>>,
}

This FileLogger will iterate over a series of Rotators, once the context trigger the Rotator, it will execute a rotation.

After rotating, the original log file would be renamed to “{original name}.{%Y-%m-%d-%H:%M:%S}”. Note: log file will not be compressed or otherwise modified.

Fields

path: PathBuffile: Filerename: Box<dyn Send + Fn(&Path) -> Result<PathBuf>>rotators: Vec<Box<dyn Rotator>>

Trait Implementations

impl Drop for RotatingFileLogger[src]

impl Write for RotatingFileLogger[src]

Auto Trait Implementations

impl !RefUnwindSafe for RotatingFileLogger

impl Send for RotatingFileLogger

impl !Sync for RotatingFileLogger

impl Unpin for RotatingFileLogger

impl !UnwindSafe for RotatingFileLogger

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> BytesEncoder for T where
    T: Write
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> NumberEncoder for T where
    T: Write
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<W> WriteBytesExt for W where
    W: Write + ?Sized
[src]