aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-02 20:06:03 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-02 20:06:03 +0800
commit2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1 (patch)
treeecd927c3423cb3ac24549b48451046919b401bf2
parent38ad4dab9cd3d88a2f05fa7e1a37c74e3d361304 (diff)
downloadgsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar.gz
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar.bz2
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar.lz
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar.xz
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.tar.zst
gsoc2013-empathy-2b8d7ebbdd40b55b72248c11600cd782d4ac7ab1.zip
raise a DEBUG instead of WARNING if we can't find the theme
-rw-r--r--libempathy-gtk/empathy-theme-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c
index c28b7204f..4c8176b88 100644
--- a/libempathy-gtk/empathy-theme-manager.c
+++ b/libempathy-gtk/empathy-theme-manager.c
@@ -144,7 +144,7 @@ theme_manager_notify_theme_cb (GSettings *gsettings_chat,
path = empathy_theme_manager_find_theme (theme);
if (path == NULL)
{
- g_warning ("Can't find theme: %s; fallback to 'Classic'",
+ DEBUG ("Can't find theme: %s; fallback to 'Classic'",
theme);
path = empathy_theme_manager_find_theme ("Classic");