mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 07:09:59 -07:00
15 lines
213 B
Rust
15 lines
213 B
Rust
use std::io;
|
|
|
|
use tracing::{debug, error, info, trace};
|
|
|
|
fn main() -> io::Result<()> {
|
|
brk_logger::init(None)?;
|
|
|
|
info!("info");
|
|
debug!("debug");
|
|
error!("error");
|
|
trace!("trace");
|
|
|
|
Ok(())
|
|
}
|