diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:06:21 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:06:21 +0100 |
| commit | 962309ddcb033e0032258d6badebb90415a34e3d (patch) | |
| tree | 64a0bde3c6ddfefa334c71314d699b9a00fad0bf /import/src/plugins/infojson.rs | |
| parent | c545bdbc10ae5a55f991e03260e6a74b92a75fda (diff) | |
| download | jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar.bz2 jellything-962309ddcb033e0032258d6badebb90415a34e3d.tar.zst | |
omdb import plugin
Diffstat (limited to 'import/src/plugins/infojson.rs')
| -rw-r--r-- | import/src/plugins/infojson.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/import/src/plugins/infojson.rs b/import/src/plugins/infojson.rs index abfadc0..3928e7a 100644 --- a/import/src/plugins/infojson.rs +++ b/import/src/plugins/infojson.rs @@ -9,7 +9,7 @@ use chrono::{Utc, format::Parsed}; use jellycommon::*; use jellydb::RowNum; use jellyremuxer::matroska::{AttachedFile, Segment}; -use log::info; +use log::debug; use serde::{Deserialize, Serialize}; use std::{collections::HashMap, fs::File, io::BufReader, path::Path}; @@ -171,7 +171,7 @@ impl ImportPlugin for Infojson { return Ok(()); } - info!("import channel info.json at {path:?}"); + debug!("import channel info.json at {path:?}"); let data = serde_json::from_reader::<_, YVideo>(BufReader::new(File::open(path)?))?; let title = clean_uploader_name(&data.title); |