aboutsummaryrefslogtreecommitdiff
path: root/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input.rs b/src/input.rs
index 3335e0b9..09349f04 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -151,7 +151,7 @@ impl Action {
Clipboard::new()
.and_then(|mut clipboard| clipboard.store_primary(buf))
.unwrap_or_else(|err| {
- err_println!("Error storing selection to clipboard. {}", Red(err));
+ warn!("Error storing selection to clipboard. {}", Red(err));
});
}
}
@@ -170,7 +170,7 @@ impl Action {
}
})
.unwrap_or_else(|err| {
- err_println!("Error loading data from clipboard. {}", Red(err));
+ warn!("Error loading data from clipboard. {}", Red(err));
});
},
}
@@ -273,7 +273,7 @@ impl<'a, N: Notify + 'a> Processor<'a, N> {
Clipboard::new()
.and_then(|mut clipboard| clipboard.store_selection(buf))
.unwrap_or_else(|err| {
- err_println!("Error storing selection to clipboard. {}", Red(err));
+ warn!("Error storing selection to clipboard. {}", Red(err));
});
}
}