aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-02-16 22:44:22 -0600
committerTed Gould <ted@gould.cx>2010-02-16 22:44:22 -0600
commit3e69079ea6fda3e08b9548376014e8ea28ce0151 (patch)
tree26675102642ab49b1bb86ec4b5f7eecd2f08270c
parent5a75fb5b91de1e3660606f8143b0d0ac94e0ffb6 (diff)
downloadlibayatana-indicator-3e69079ea6fda3e08b9548376014e8ea28ce0151.tar.gz
libayatana-indicator-3e69079ea6fda3e08b9548376014e8ea28ce0151.tar.bz2
libayatana-indicator-3e69079ea6fda3e08b9548376014e8ea28ce0151.zip
Disabling debug messages
-rw-r--r--libindicator/indicator-desktop-shortcuts.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libindicator/indicator-desktop-shortcuts.c b/libindicator/indicator-desktop-shortcuts.c
index 4f58835..e86a6ab 100644
--- a/libindicator/indicator-desktop-shortcuts.c
+++ b/libindicator/indicator-desktop-shortcuts.c
@@ -235,7 +235,7 @@ parse_keyfile (IndicatorDesktopShortcuts * ids)
/* If there is an error from get_string_list num_nicks should still
be zero, so this loop will drop out. */
for (i = 0; i < num_nicks; i++) {
- g_debug("Looking at group nick %s", nicks[i]);
+ /* g_debug("Looking at group nick %s", nicks[i]); */
gchar * groupname = g_strdup_printf("%s " GROUP_SUFFIX, nicks[i]);
if (!g_key_file_has_group(priv->keyfile, groupname)) {
g_warning("Unable to find group '%s'", groupname);
@@ -323,7 +323,7 @@ is_valid_nick (gchar ** list, const gchar * nick)
{
if (*list == NULL)
return FALSE;
- g_debug("Checking Nick: %s", list[0]);
+ /* g_debug("Checking Nick: %s", list[0]); */
if (g_strcmp0(list[0], nick) == 0)
return TRUE;
return is_valid_nick(&list[1], nick);
@@ -488,7 +488,7 @@ indicator_desktop_shortcuts_nick_exec (IndicatorDesktopShortcuts * ids, const gc
g_free(name); g_free(exec);
- g_debug("Desktop file: \n%s", desktopdata);
+ /* g_debug("Desktop file: \n%s", desktopdata); */
GKeyFile * launcher = g_key_file_new();
g_key_file_load_from_data(launcher, desktopdata, -1, G_KEY_FILE_NONE, &error);