summaryrefslogtreecommitdiffstats
path: root/src/logging/config.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-20 18:05:06 -0600
committerToby Vincent <tobyv13@gmail.com>2022-11-20 18:05:06 -0600
commitfe92d86fbe5f73bc2662a128b6431ec2089d05b8 (patch)
tree8301319ece23fad3142f4b9af196cce2780936b9 /src/logging/config.rs
parentb1438bd27d32e4e2530825026cc39a8ac5456f68 (diff)
refactor: remove unnecessary exports
Diffstat (limited to 'src/logging/config.rs')
-rw-r--r--src/logging/config.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/logging/config.rs b/src/logging/config.rs
index 1663f13..d9f14a6 100644
--- a/src/logging/config.rs
+++ b/src/logging/config.rs
@@ -1,8 +1,10 @@
-use super::level::{self, Level};
+use super::level;
use figment::{providers::Serialized, value, Figment, Metadata, Profile, Provider};
use serde::{Deserialize, Serialize};
use std::path::PathBuf;
+pub(crate) use level::Level;
+
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(default)]
pub struct Config {