feat: remove pretty_env_logger

It never really did anything
This commit is contained in:
Harsh Shandilya 2022-03-06 16:03:47 +05:30
parent 86ea822d2c
commit 52489ad051
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 4 additions and 68 deletions

View file

@ -19,7 +19,6 @@ fn main() -> Result<()> {
if check_for_version_arg() {
return Ok(());
}
pretty_env_logger::init();
let config_path = get_config_path()?;
let config_str = std::fs::read_to_string(config_path.as_path()).unwrap_or_default();
let config: Replacements<'_> = toml::from_str(&config_str)?;