diff --git a/x11/src/deduplication.rs b/x11/src/deduplication.rs index 22f897c..005f6cb 100644 --- a/x11/src/deduplication.rs +++ b/x11/src/deduplication.rs @@ -3,7 +3,7 @@ use std::{ hash::{Hash, Hasher}, }; -use log::{error, info}; +use log::{error, info, warn}; use ringboard_sdk::{ core::{ dirs::data_dir, @@ -123,7 +123,7 @@ impl CopyDeduplication { .and_then(|id| { let id = composite_id(kind, id); let entry = unsafe { self.database.get(id) } - .inspect_err(|e| error!("Failed to get entry for ID: {id:?}\nError: {e:?}")) + .inspect_err(|e| warn!("Failed to get entry for ID: {id:?}\nError: {e:?}")) .ok()?; match data { CopyData::Slice(data) => {