[][src]Macro dynerr::clean

macro_rules! clean {
    () => { ... };
    ($log:expr) => { ... };
}

deletes the supplied log file.

if no file supplied defaults to "event.log".

#Example

log!("hello world", "my.log");
clean!("my.log");
log!("i just cleaned my.log");
clean!();