diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-23 09:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 09:54:22 -0400 |
commit | 53dac7451bbdd527aa91e01653b678547624fc39 (patch) | |
tree | c43dbc34fd4ada4249064aab2086ab64b276a460 /cli/logger.rs | |
parent | 5edcd9dd355483df6b9a8c34ca94f3f54d672b9e (diff) |
chore: remove all `pub(crate)`s from the cli crate (#14083)
Diffstat (limited to 'cli/logger.rs')
-rw-r--r-- | cli/logger.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/logger.rs b/cli/logger.rs index 7765032bd..caa027c04 100644 --- a/cli/logger.rs +++ b/cli/logger.rs @@ -30,7 +30,7 @@ impl log::Log for CliLogger { } } -pub(crate) fn init(maybe_level: Option<log::Level>) { +pub fn init(maybe_level: Option<log::Level>) { let log_level = maybe_level.unwrap_or(log::Level::Info); let logger = env_logger::Builder::from_env( env_logger::Env::default() |