diff options
author | Skyler Hawthorne | 2022-10-21 15:15:28 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-02-02 19:53:18 +0000 |
commit | 0e038fb80cd5f9bcdfd5fc057843cc1d79a7d7ea (patch) | |
tree | b4555ccdb52682892edc40b09b0555efa02a2391 /helix-view | |
parent | 8ba0a4627439b944157c288f909517289d5aeb20 (diff) |
make clipboard message debug
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/clipboard.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/clipboard.rs b/helix-view/src/clipboard.rs index 3c620c14..96c87d3f 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<str> { - 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") } |