dispatcher: lower a monitor-config warning to a debug level

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
This commit is contained in:
Marc-André Lureau 2014-08-29 13:14:08 +02:00
parent 288cf77f80
commit 5972452b28

View File

@ -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;
}