Module plumber_rs::log[][src]

The binding for the Plumber framework logging system.

With the plumber_log macro, the Rust servlet is able to emit log to the Plumber logging system directly.

Sample code:

    plumber_log(E "This is a error message");
    plumber_log(N "This is a notice message");
    plumber_log(D "Debug message {}", "hello");
    //...

Functions

log_write

Write a log to the Plumber logging system.