diff --git a/src/commands/list.rs b/src/commands/list.rs index c20b0a0..c2be9c1 100644 --- a/src/commands/list.rs +++ b/src/commands/list.rs @@ -306,9 +306,10 @@ impl SqliteClipboardDb { .show(); }, Err(e) => { + log::error!("Failed to copy entry to clipboard: {e}"); let _ = Notification::new() .summary("Stash") - .body(&format!("Failed to copy entry: {e}")) + .body(&format!("Failed to copy to clipboard: {e}")) .show(); }, }