Macro slog::log [] [src]

macro_rules! log {
    (2 @ { $($fmt:tt)* },  $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr, $($args:tt)*) => { ... };
    (1 @ { $($fmt:tt)* }, $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr, ; $($args:tt)*) => { ... };
    (1 @ { $($fmt:tt)* }, $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr, $f:tt $($args:tt)*) => { ... };
    (1 @ { $($fmt:tt)* }, $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr; $($args:tt)*) => { ... };
    (1 @ { $($fmt:tt)* }, $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr,) => { ... };
    (1 @ { $($fmt:tt)* }, $l:expr, $lvl:expr, $tag:expr, $msg_fmt:expr) => { ... };
    ($l:expr, $lvl:expr, $tag:expr, $($args:tt)*) => { ... };
}

Log message a logging record

Use wrappers error!, warn! etc. instead

The max_level_* and release_max_level* cargo features can be used to statically disable logging at various levels. See slog notable details

Use version with longer name if you want to prevent clash with legacy log crate macro names.

Supported invocations

Simple

#[macro_use]
extern crate slog;

fn main() {
    let drain = slog::Discard;
    let root = slog::Logger::root(
        drain,
        o!("key1" => "value1", "key2" => "value2")
    );
    info!(root, "test info log"; "log-key" => true);
}

Note that "key" => value part is optional:

#[macro_use]
extern crate slog;

fn main() {
    let drain = slog::Discard;
    let root = slog::Logger::root(
        drain, o!("key1" => "value1", "key2" => "value2")
    );
    info!(root, "test info log");
}

fmt::Arguments support:

#[macro_use]
extern crate slog;

fn main() {
    let drain = slog::Discard;
    let root = slog::Logger::root(drain,
        o!("key1" => "value1", "key2" => "value2")
    );
    info!(root, "formatted: {}", 1; "log-key" => true);
}

Note that that ; separates formatting string from key value pairs.

Again, "key" => value part is optional:

#[macro_use]
extern crate slog;

fn main() {
    let drain = slog::Discard;
    let root = slog::Logger::root(
        drain, o!("key1" => "value1", "key2" => "value2")
    );
    info!(root, "formatted: {}", 1);
}

Note: use formatting support only when it really makes sense. Eg. logging message like "found {} keys" is against structured logging. It should be "found keys", "count" => keys_num instead, so that data is clearly named, typed and separated from the message.

Tags

All above versions can be supplemented with a tag - string literal prefixed with #.

#[macro_use]
extern crate slog;

fn main() {
    let drain = slog::Discard;
    let root = slog::Logger::root(drain,
        o!("key1" => "value1", "key2" => "value2")
    );
    let ops = 3;
    info!(
        root,
        #"performance-metric", "thread speed"; "ops_per_sec" => ops
    );
}

See Record::tag() for more information about tags.

Own implementations of KV and Value

List of key value pairs is a comma separated list of key-values. Typically, a designed syntax is used in form of k => v where k can be any type that implements Value type.

It's possible to directly specify type that implements KV trait without => syntax.

#[macro_use]
extern crate slog;

use slog::*;

fn main() {
    struct MyKV;
    struct MyV;

    impl KV for MyKV {
       fn serialize(&self,
                    _record: &Record,
                    serializer: &mut Serializer)
                   -> Result {
           serializer.emit_u32("MyK", 16)
       }
    }

    impl Value for MyV {
       fn serialize(&self,
                    _record: &Record,
                    key : Key,
                    serializer: &mut Serializer)
                   -> Result {
           serializer.emit_u32("MyKV", 16)
       }
    }

    let drain = slog::Discard;

    let root = slog::Logger::root(drain, o!(MyKV));

    info!(
        root,
        "testing MyV"; "MyV" => MyV
    );
}

fmt::Display and fmt::Debug values

Value of any type that implements std::fmt::Display can be prefixed with % in k => v expression to use it's text representation returned by format_args!("{}", v). This is especially useful for errors. Not that this does not allocate any String since it operates on fmt::Arguments.

Similarly to use std::fmt::Debug value can be prefixed with ?.

#[macro_use]
extern crate slog;
use std::fmt::Write;

fn main() {
    let drain = slog::Discard;
    let log  = slog::Logger::root(drain, o!());

    let mut output = String::new();

    if let Err(e) = write!(&mut output, "write to string") {
        error!(log, "write failed"; "err" => %e);
    }
}