[Spice-devel] [PATCH spice] dispatcher: lower a monitor-config warning to a debug level

Marc-André Lureau marcandre.lureau at gmail.com
Fri Aug 29 04:15:54 PDT 2014


Some QXLInterface implementations might not have or succeed
with client_monitors_config(). Thus, lower warning to debug
level.

https://bugzilla.redhat.com/show_bug.cgi?id=1119220
---
 server/red_dispatcher.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/red_dispatcher.c b/server/red_dispatcher.c
index fd6c2e1..a6ffe7b 100644
--- a/server/red_dispatcher.c
+++ b/server/red_dispatcher.c
@@ -332,8 +332,8 @@ void red_dispatcher_client_monitors_config(VDAgentMonitorsConfig *monitors_confi
         if (!now->qxl->st->qif->client_monitors_config ||
             !now->qxl->st->qif->client_monitors_config(now->qxl,
                                                        monitors_config)) {
-            spice_warning("spice bug: QXLInterface::client_monitors_config"
-                          " failed/missing unexpectedly\n");
+            /* this is a normal condition, some qemu devices might not implement it */
+            spice_debug("QXLInterface::client_monitors_config failed\n");
         }
         now = now->next;
     }
-- 
1.9.3



More information about the Spice-devel mailing list