structured-logger

License Crates.io Codecov CI Docs.rs Latest Version

A logging implementation for the log crate that logs structured values either synchronous or asynchronous, in JSON, CBOR, or any other format, to a file, stderr, stdout, or any other destination.

It is inspired by std-logger.

Usage

See examples and the [API documentation] for more.

Example

Simple example: ```rust use serde::Serialize; use structuredlogger::{asyncjson::newwriter, unixms, Builder};

[tokio::main]

async fn main() { // Initialize the logger. Builder::withlevel("info") .withtargetwriter("*", newwriter(tokio::io::stdout())) .init();

let kv = ContextLog {
    uid: "user123".to_string(),
    action: "upate_book".to_string(),
};

log::info!("hello world");
// This log will be written to stdout:
// {"level":"INFO","message":"hello world","target":"simple","timestamp":1679745592127}

log::info!(target: "api",
    method = "GET",
    path = "/hello",
    status = 200_u16,
    start = unix_ms(),
    elapsed = 10_u64,
    kv = log::as_serde!(kv);
    "",
);
// This log will be written to stdout:
// {"elapsed":10,"kv":{"uid":"user123","action":"upate_book"},"level":"INFO","message":"","method":"GET","path":"/hello","start":1679745592127,"status":200,"target":"api","timestamp":1679745592127}

}

[derive(Serialize)]

struct ContextLog { uid: String, action: String, } ```

License

Copyright © 2023-present IO Rust.

iorust/structured-logger is licensed under either of Apache License, Version 2.0 or MIT license at your option.