Module tide::log[][src]

Expand description

Event logging types.

Examples

use tide::log;

log::start();

log::info!("Hello cats");
log::debug!("{} wants tuna", "Nori");
log::error!("We're out of tuna!");
log::info!("{} are hungry", "cats", {
    cat_1: "Chashu",
    cat_2: "Nori",
});

Macros

Logs a message at the debug level.

Logs a message at the error level.

Logs a message at the info level.

The standard logging macro.

Logs a message at the trace level.

Logs a message at the warn level.

Structs

Log all incoming requests and responses.

Enums

An enum representing the available verbosity levels of the logger.

An enum representing the available verbosity level filters of the logger.

Functions

Returns the current maximum log level.

Start logging.

Start logging with a log level.