summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNick Schermer <nick@xfce.org>2010-02-26 14:08:29 +0100
committerNick Schermer <nick@xfce.org>2010-02-26 14:11:51 +0100
commit0fd6f1c6851d289ca884f3d5d03d825a8660a282 (patch)
tree083f22beed266c531eec3981047adcde6e9685e1 /common
parent7743bbcaeb60d1a624b9a311d4a6a23a77dbdfd8 (diff)
downloadxfce4-panel-0fd6f1c6851d289ca884f3d5d03d825a8660a282.tar.gz
Don't print initial debug message.
Diffstat (limited to 'common')
-rw-r--r--common/panel-debug.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/panel-debug.c b/common/panel-debug.c
index 857bb727..307d4f63 100644
--- a/common/panel-debug.c
+++ b/common/panel-debug.c
@@ -66,17 +66,11 @@ panel_debug (const gchar *domain,
else if (strcmp (value, "1") == 0)
{
level = DEBUG_LEVEL_ALL_DOMAINS;
-
- g_printerr (PACKAGE_NAME "(debug): showing all domains\n");
}
else
{
level = DEBUG_LEVEL_FILTER_DOMAINS;
domains = g_strsplit (value, ":", -1);
-
- string = g_strjoinv (", ", domains);
- g_printerr (PACKAGE_NAME "(debug): filter domains (%s)\n", string);
- g_free (string);
}
g_once_init_leave (&level__volatile, level);