From 1fc816764b6db66c671ffa936ee024a481d88bb4 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Thu, 24 Jan 2013 13:00:00 +0100 Subject: vdagentd-xorg-conf: Don't warn when there are too few qxl devices (rhbz#895004) Since we now support more then 1 monitor / qxl device don't log a warning when there are more monitors then qxl-devs. Note the warning does still get written to the generated xorg.conf file, as that is intended for use with xinerama setups, and there we do have a limit of 1 monitor / device. Signed-off-by: Hans de Goede --- src/vdagentd-xorg-conf.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/vdagentd-xorg-conf.c b/src/vdagentd-xorg-conf.c index cfdd4ae..6d5f0f4 100644 --- a/src/vdagentd-xorg-conf.c +++ b/src/vdagentd-xorg-conf.c @@ -120,9 +120,6 @@ void vdagentd_write_xorg_conf(VDAgentMonitorsConfig *monitor_conf) } while ((dev = pci_device_next(it))); if (i < monitor_conf->num_of_monitors) { - syslog(LOG_WARNING, - "Client has %d monitors, but only %d qxl devices found", - monitor_conf->num_of_monitors, i); FPRINTF("# Client has %d monitors, but only %d qxl devices found\n", monitor_conf->num_of_monitors, i); FPRINTF("# Only generation %d \"Screen\" sections\n\n", i); -- cgit