diff options
Diffstat (limited to 'transcoder')
-rw-r--r-- | transcoder/src/snippet.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/transcoder/src/snippet.rs b/transcoder/src/snippet.rs index 969a2ec..4a55c13 100644 --- a/transcoder/src/snippet.rs +++ b/transcoder/src/snippet.rs @@ -7,7 +7,7 @@ use crate::LOCAL_TRANSCODING_TASKS; use jellybase::cache::async_cache_file; use jellycommon::{jhls::EncodingProfile, AssetLocation}; -use log::info; +use log::{debug, info}; use std::process::Stdio; use tokio::{ io::copy, @@ -23,7 +23,7 @@ pub async fn transcode( &["snip-tc", key, &format!("{enc:?}")], move |mut output| async move { let _permit = LOCAL_TRANSCODING_TASKS.acquire().await?; - info!("transcoding snippet {key}"); + debug!("transcoding snippet {key}"); let mut args = Vec::new(); match enc { |