summaryrefslogtreecommitdiffstats
path: root/src/logging.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/logging.rs')
-rw-r--r--src/logging.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/logging.rs b/src/logging.rs
index 15008be..ee48518 100644
--- a/src/logging.rs
+++ b/src/logging.rs
@@ -3,8 +3,9 @@ use std::{fs::File, ops::Deref, sync::Arc};
use tracing::metadata::LevelFilter;
use tracing_subscriber::{prelude::*, Layer};
-pub use config::Config;
-pub use error::{Error, Result};
+pub(crate) use config::Config;
+pub(crate) use error::{Error, Result};
+
pub use level::Level;
mod config;