summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-09-06 15:27:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-09-06 15:31:11 +0100
commite053f8cb0fc78bae274b74d7fed59d211e5c9f26 (patch)
tree129215edf571a22089fc28837ec90c2ac70439b5 /vcl/generic
parent160a88e18d868433813f3f09b340dcaf68f276b2 (diff)
these warnings are only debug informational really
Change-Id: Ie3da4be7251302cb68bd80a65bf74e8bc1b2e5cd
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/fontmanager/fontconfig.cxx8
1 files changed, 4 insertions, 4 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);
}