diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-09-06 15:27:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-06 15:31:11 +0100 |
commit | e053f8cb0fc78bae274b74d7fed59d211e5c9f26 (patch) | |
tree | 129215edf571a22089fc28837ec90c2ac70439b5 /vcl | |
parent | 160a88e18d868433813f3f09b340dcaf68f276b2 (diff) |
these warnings are only debug informational really
Change-Id: Ie3da4be7251302cb68bd80a65bf74e8bc1b2e5cd
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/generic/fontmanager/fontconfig.cxx | 8 | ||||
-rw-r--r-- | vcl/unx/gtk/window/gtkframe.cxx | 18 |
2 files changed, 13 insertions, 13 deletions
diff --git a/vcl/generic/fontmanager/fontconfig.cxx b/vcl/generic/fontmanager/fontconfig.cxx index 26a292cd3add..b164adc77178 100644 --- a/vcl/generic/fontmanager/fontconfig.cxx +++ b/vcl/generic/fontmanager/fontconfig.cxx @@ -868,7 +868,7 @@ IMPL_LINK_NOARG(PrintFontManager, autoInstallFontLangSupport) DBusGConnection *session_connection = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (error != NULL) { - g_warning ("DBUS cannot connect : %s", error->message); + g_debug ("DBUS cannot connect : %s", error->message); g_error_free (error); return -1; } @@ -880,7 +880,7 @@ IMPL_LINK_NOARG(PrintFontManager, autoInstallFontLangSupport) "org.freedesktop.PackageKit.Modify"); if (proxy == NULL) { - g_warning("Could not get DBUS proxy: org.freedesktop.PackageKit"); + g_debug("Could not get DBUS proxy: org.freedesktop.PackageKit"); return -1; } @@ -897,12 +897,12 @@ IMPL_LINK_NOARG(PrintFontManager, autoInstallFontLangSupport) G_TYPE_INVALID); /* check the return value */ if (!res) - g_warning("InstallFontconfigResources method failed"); + g_debug("InstallFontconfigResources method failed"); /* check the error value */ if (error != NULL) { - g_warning("InstallFontconfigResources problem : %s", error->message); + g_debug("InstallFontconfigResources problem : %s", error->message); g_error_free(error); } diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx index fdbc6dec7413..c159858ae3f9 100644 --- a/vcl/unx/gtk/window/gtkframe.cxx +++ b/vcl/unx/gtk/window/gtkframe.cxx @@ -2060,7 +2060,7 @@ dbus_inhibit_gsm (const gchar *appname, /* get the DBUS session connection */ session_connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); if (error != NULL) { - g_warning ("DBUS cannot connect : %s", error->message); + g_debug ("DBUS cannot connect : %s", error->message); g_error_free (error); return -1; } @@ -2071,7 +2071,7 @@ dbus_inhibit_gsm (const gchar *appname, GSM_DBUS_PATH, GSM_DBUS_INTERFACE); if (proxy == NULL) { - g_warning ("Could not get DBUS proxy: %s", GSM_DBUS_SERVICE); + g_debug ("Could not get DBUS proxy: %s", GSM_DBUS_SERVICE); return -1; } @@ -2088,12 +2088,12 @@ dbus_inhibit_gsm (const gchar *appname, /* check the return value */ if (! res) { cookie = -1; - g_warning ("Inhibit method failed"); + g_debug ("Inhibit method failed"); } /* check the error value */ if (error != NULL) { - g_warning ("Inhibit problem : %s", error->message); + g_debug ("Inhibit problem : %s", error->message); g_error_free (error); cookie = -1; } @@ -2111,14 +2111,14 @@ dbus_uninhibit_gsm (guint cookie) DBusGConnection *session_connection = NULL; if (cookie == guint(-1)) { - g_warning ("Invalid cookie"); + g_debug ("Invalid cookie"); return; } /* get the DBUS session connection */ session_connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); if (error) { - g_warning ("DBUS cannot connect : %s", error->message); + g_debug ("DBUS cannot connect : %s", error->message); g_error_free (error); return; } @@ -2129,7 +2129,7 @@ dbus_uninhibit_gsm (guint cookie) GSM_DBUS_PATH, GSM_DBUS_INTERFACE); if (proxy == NULL) { - g_warning ("Could not get DBUS proxy: %s", GSM_DBUS_SERVICE); + g_debug ("Could not get DBUS proxy: %s", GSM_DBUS_SERVICE); return; } @@ -2142,12 +2142,12 @@ dbus_uninhibit_gsm (guint cookie) /* check the return value */ if (! res) { - g_warning ("Uninhibit method failed"); + g_debug ("Uninhibit method failed"); } /* check the error value */ if (error != NULL) { - g_warning ("Uninhibit problem : %s", error->message); + g_debug ("Uninhibit problem : %s", error->message); g_error_free (error); cookie = -1; } |