summaryrefslogtreecommitdiffstats
path: root/src/commands/core/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/core/mod.rs')
-rw-r--r--src/commands/core/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/core/mod.rs b/src/commands/core/mod.rs
index 2a3d334..8055125 100644
--- a/src/commands/core/mod.rs
+++ b/src/commands/core/mod.rs
@@ -45,7 +45,7 @@ pub fn init(fetcher: Box<dyn Fetcher>) -> Result<()> {
pub fn get_fetcher() -> Result<Box<dyn Fetcher>> {
let source = CONFIG.source();
- log::debug!("{source:#?}");
+ debug!("{source:#?}");
match source {
Source::Cheats(query) => {
let lines = cheatsh::call(&query)?;