aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs
index 046a2be..a5ac928 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -18,13 +18,13 @@ lazy_static! {
};
pub static ref FFMPEG_COMMAND: String = {
let result = CONFIG.ffmpeg.clone().unwrap_or("ffmpeg".to_owned());
- tracing::debug!("got ffmpeg: {result}");
+ tracing::debug!(ffmpeg = %result, "got ffmpeg");
result
};
pub static ref YTDL_COMMAND: String = {
let result = CONFIG.ytdl.clone().unwrap_or("yt-dlp".to_owned());
- tracing::debug!("got ytdl: {result}");
+ tracing::debug!(ytdl = %result, "got ytdl");
result
};