diff options
author | TruongSinh Tran-Nguyen <i@truongsinh.pro> | 2023-04-26 12:50:16 -0700 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-04-26 17:46:23 -0400 |
commit | 47ec3ed6edb90c1117d0c79c382f03a3ed87c5ca (patch) | |
tree | 2aae100d0d553104b8276e8785865a7fc7b84991 /rust-src/src/lib.rs | |
parent | 4f6b28f54f09ee4498466d39cf550faeedd5614a (diff) |
chore: logger for idiomatic style and expanded logging levels
Improve the Rust logger by adhering to idiomatic Rust conventions and
incorporating additional logging levels: warn, debug, and trace.
Signed-off-by: TruongSinh Tran-Nguyen <i@truongsinh.pro>
Diffstat (limited to 'rust-src/src/lib.rs')
-rw-r--r-- | rust-src/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust-src/src/lib.rs b/rust-src/src/lib.rs index a33e3914..159d049d 100644 --- a/rust-src/src/lib.rs +++ b/rust-src/src/lib.rs @@ -1,4 +1,5 @@ pub mod key; +pub mod logger; pub mod cmd_mount; pub mod cmd_list; |