From 7d7e8c2aae15d6d161f4651da4bb7b70bde9118d Mon Sep 17 00:00:00 2001 From: Pavel Grunt Date: Tue, 31 May 2016 11:01:22 +0200 Subject: [PATCH] app: Use debug to inform about smartcard shortcuts state MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Related: rhbz#1339572 Acked-by: Fabiano FidĂȘncio --- src/virt-viewer-app.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c index 31cbd20..873f894 100644 --- a/src/virt-viewer-app.c +++ b/src/virt-viewer-app.c @@ -1762,7 +1762,7 @@ virt_viewer_update_smartcard_accels(VirtViewerApp *self) sw_smartcard = FALSE; } if (sw_smartcard) { - g_warning("enabling smartcard shortcuts"); + g_debug("enabling smartcard shortcuts"); gtk_accel_map_change_entry("/file/smartcard-insert", priv->insert_smartcard_accel_key, priv->insert_smartcard_accel_mods, @@ -1772,7 +1772,7 @@ virt_viewer_update_smartcard_accels(VirtViewerApp *self) priv->remove_smartcard_accel_mods, TRUE); } else { - g_warning("disabling smartcard shortcuts"); + g_debug("disabling smartcard shortcuts"); gtk_accel_map_change_entry("/file/smartcard-insert", 0, 0, TRUE); gtk_accel_map_change_entry("/file/smartcard-remove", 0, 0, TRUE); }