[][src]Module holochain_logging::prelude

Convenience re-export of common members

Like the standard library's prelude, this module simplifies importing of common items. Unlike the standard prelude, the contents of this module must be imported manually:

use holochain_logging::prelude::*;
    .build_test().unwrap();

Re-exports

pub use crate::FastLogger;
pub use crate::FastLoggerBuilder;
pub use crate::rule::RuleFilter;
pub use crate::rule::RuleFilterBuilder;

Macros

debug

Logs a message at the debug level.

error

Logs a message at the error level.

info

Logs a message at the info level.

log

The standard logging macro.

trace

Logs a message at the trace level.

warn

Logs a message at the warn level.

Enums

Level

An enum representing the available verbosity levels of the logger.