1
2
3
4
5
6
extern crate tangra;

fn main() {
    let mut logger = tangra::Logger::new();
    logger.debug("Debug message example");
}