aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src
diff options
context:
space:
mode:
Diffstat (limited to 'mumlib/src')
-rw-r--r--mumlib/src/config.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mumlib/src/config.rs b/mumlib/src/config.rs
index e2ede02..d93b172 100644
--- a/mumlib/src/config.rs
+++ b/mumlib/src/config.rs
@@ -1,4 +1,3 @@
-use log::*;
use serde::{Deserialize, Serialize};
use std::fs;
use toml::Value;
@@ -18,7 +17,6 @@ pub struct Config {
impl Config {
pub fn write_default_cfg(&self) {
- debug!("{}", toml::to_string(&TOMLConfig::from(self)).unwrap());
fs::write(get_cfg_path(), toml::to_string(&TOMLConfig::from(self)).unwrap()).unwrap();
}
}