summaryrefslogtreecommitdiff
path: root/services/evolution-user-prompter
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-11-21 14:49:36 -0500
committerColin Walters <walters@verbum.org>2013-11-22 15:00:41 -0500
commitf69f79d04ec51f5a6d2de585f90627654c068fdb (patch)
tree583a37c2de804008af76f82e114346cb38c8ce0b /services/evolution-user-prompter
parentd67dee7b8a82022963699a82c6ed54d1f1a55da1 (diff)
downloadevolution-data-server-f69f79d04ec51f5a6d2de585f90627654c068fdb.tar.gz
services: Demote g_print() -> g_debug() for bus names
This happens in normal operation, we don't need to announce it. Developers wanting to trace things relating to DBus names can use tools like gdbus monitor or d-feet. https://bugzilla.gnome.org/show_bug.cgi?id=712841
Diffstat (limited to 'services/evolution-user-prompter')
-rw-r--r--services/evolution-user-prompter/evolution-user-prompter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/evolution-user-prompter/evolution-user-prompter.c b/services/evolution-user-prompter/evolution-user-prompter.c
index 682be170d..ae2dd2ed2 100644
--- a/services/evolution-user-prompter/evolution-user-prompter.c
+++ b/services/evolution-user-prompter/evolution-user-prompter.c
@@ -63,7 +63,7 @@ main (gint argc,
server, "prompt",
G_CALLBACK (prompt_user_show), NULL);
- g_print ("Prompter is up and running...\n");
+ g_debug ("Prompter is up and running...");
/* This SHOULD keep the server's use
* count from ever reaching zero. */
@@ -74,7 +74,7 @@ main (gint argc,
g_object_unref (server);
- g_print ("Bye.\n");
+ g_debug ("Bye.");
return 0;
}