Trait Logger
holochain_core::logger
pub trait Logger: Send { fn log(&mut self, msg: String); fn dump(&self) -> String { ... } }
trait that defines the logging functionality that holochain_core requires
fn log(&mut self, msg: String)
fn dump(&self) -> String
impl Logger for SimpleLogger