cashmere

cashmere

macro tracing for debugging

Preface

As I am still progressing with dape, the debugger for Emacs, using the tracing crate, is helpful to debug.

Example

use tracing::error;

fn main() {
    error!("Could not retrieve booking information: {}", error);
}

References

tracing - Rust