summaryrefslogtreecommitdiff
path: root/rust-src/bch_bindgen/src/lib.rs
diff options
context:
space:
mode:
authorAlexander Fougner <fougner89@gmail.com>2023-01-16 17:08:52 +0100
committerAlexander Fougner <fougner89@gmail.com>2023-01-18 06:47:46 +0100
commit8accfdc3c596bfe5cbd10dac3f1650192981eb17 (patch)
treee93535eb6ded70806cc7518fb453448d569abaa1 /rust-src/bch_bindgen/src/lib.rs
parent20aecb42d8d1c869b17b38b979b9f2f7cbd2ca34 (diff)
rust: replace tracing with logger
tracing framework is a overengineered for simple mount helper. Add a few very barebone logging macros to allow configurable verbosity and colorized output with a small footprint. Signed-off-by: Alexander Fougner <fougner89@gmail.com>
Diffstat (limited to 'rust-src/bch_bindgen/src/lib.rs')
-rw-r--r--rust-src/bch_bindgen/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-src/bch_bindgen/src/lib.rs b/rust-src/bch_bindgen/src/lib.rs
index dc8bcf4a..c54786aa 100644
--- a/rust-src/bch_bindgen/src/lib.rs
+++ b/rust-src/bch_bindgen/src/lib.rs
@@ -1,7 +1,7 @@
pub mod bcachefs;
pub mod keyutils;
+pub mod log;
pub mod rs;
-
pub mod c {
pub use crate::bcachefs::*;
}