From 0e038fb80cd5f9bcdfd5fc057843cc1d79a7d7ea Mon Sep 17 00:00:00 2001 From: Skyler Hawthorne Date: Fri, 21 Oct 2022 11:15:28 -0400 Subject: [PATCH] make clipboard message debug --- helix-view/src/clipboard.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-view/src/clipboard.rs b/helix-view/src/clipboard.rs index 3c620c146..96c87d3f5 100644 --- a/helix-view/src/clipboard.rs +++ b/helix-view/src/clipboard.rs @@ -41,7 +41,7 @@ macro_rules! command_provider { primary_paste => $pr_get_prg:literal $( , $pr_get_arg:literal )* ; primary_copy => $pr_set_prg:literal $( , $pr_set_arg:literal )* ; ) => {{ - log::info!( + log::debug!( "Using {} to interact with the system and selection (primary) clipboard", if $set_prg != $get_prg { format!("{}+{}", $set_prg, $get_prg)} else { $set_prg.to_string() } ); @@ -381,7 +381,7 @@ mod provider { impl ClipboardProvider for WindowsProvider { fn name(&self) -> Cow { - log::info!("Using clipboard-win to interact with the system clipboard"); + log::debug!("Using clipboard-win to interact with the system clipboard"); Cow::Borrowed("clipboard-win") }