aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-02-11 20:31:43 -0600
committerTed Gould <ted@canonical.com>2009-02-11 20:31:43 -0600
commit2f2fdfe9a4e312dde374e000a02dd61e8a40c608 (patch)
tree4fd4b828fc2b91f4d72c9780d660001fa50f54d1
parent47decbd2ae092d72010d9adb343bd0fe2d87d8ed (diff)
downloadlibayatana-indicator-2f2fdfe9a4e312dde374e000a02dd61e8a40c608.tar.gz
libayatana-indicator-2f2fdfe9a4e312dde374e000a02dd61e8a40c608.tar.bz2
libayatana-indicator-2f2fdfe9a4e312dde374e000a02dd61e8a40c608.zip
Cleaning up some debug messages that aren't as useful anymore
-rw-r--r--libindicate/indicator.c4
-rw-r--r--libindicate/server.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/libindicate/indicator.c b/libindicate/indicator.c
index 71ce030..c6df80a 100644
--- a/libindicate/indicator.c
+++ b/libindicate/indicator.c
@@ -67,7 +67,7 @@ static GPtrArray * list_properties (IndicateIndicator * indicator);
static void
indicate_indicator_class_init (IndicateIndicatorClass * class)
{
- g_debug("Indicator Class Initialized.");
+ /* g_debug("Indicator Class Initialized."); */
GObjectClass * gobj;
gobj = G_OBJECT_CLASS(class);
@@ -116,7 +116,7 @@ indicate_indicator_class_init (IndicateIndicatorClass * class)
static void
indicate_indicator_init (IndicateIndicator * indicator)
{
- g_debug("Indicator Object Initialized.");
+ /* g_debug("Indicator Object Initialized."); */
IndicateIndicatorPrivate * priv = INDICATE_INDICATOR_GET_PRIVATE(indicator);
priv->is_visible = FALSE;
diff --git a/libindicate/server.c b/libindicate/server.c
index a9849fe..0c74376 100644
--- a/libindicate/server.c
+++ b/libindicate/server.c
@@ -106,7 +106,7 @@ static void get_property (GObject * obj, guint id, GValue * value, GParamSpec *
static void
indicate_server_class_init (IndicateServerClass * class)
{
- g_debug("Server Class Initialized");
+ /* g_debug("Server Class Initialized"); */
GObjectClass * gobj;
gobj = G_OBJECT_CLASS(class);
@@ -182,7 +182,7 @@ indicate_server_class_init (IndicateServerClass * class)
static void
indicate_server_init (IndicateServer * server)
{
- g_debug("Server Object Initialized");
+ /* g_debug("Server Object Initialized"); */
IndicateServerPrivate * priv = INDICATE_SERVER_GET_PRIVATE(server);