[evolution-data-server] services: Demote g_print() -> g_debug() for bus names



commit f69f79d04ec51f5a6d2de585f90627654c068fdb
Author: Colin Walters <walters verbum org>
Date:   Thu Nov 21 14:49:36 2013 -0500

    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

 .../evolution-addressbook-factory.c                |    4 ++--
 .../evolution-calendar-factory.c                   |    4 ++--
 .../evolution-source-registry.c                    |    4 ++--
 .../evolution-user-prompter.c                      |    4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/services/evolution-addressbook-factory/evolution-addressbook-factory.c 
b/services/evolution-addressbook-factory/evolution-addressbook-factory.c
index 81eade6..70585ae 100644
--- a/services/evolution-addressbook-factory/evolution-addressbook-factory.c
+++ b/services/evolution-addressbook-factory/evolution-addressbook-factory.c
@@ -118,7 +118,7 @@ main (gint argc,
                exit (EXIT_FAILURE);
        }
 
-       g_print ("Server is up and running...\n");
+       g_debug ("Server is up and running...");
 
        /* This SHOULD keep the server's use
         * count from ever reaching zero. */
@@ -129,7 +129,7 @@ main (gint argc,
 
        g_object_unref (server);
 
-       g_print ("Bye.\n");
+       g_debug ("Bye.");
 
        return 0;
 }
diff --git a/services/evolution-calendar-factory/evolution-calendar-factory.c 
b/services/evolution-calendar-factory/evolution-calendar-factory.c
index d9bc59e..c7b3959 100644
--- a/services/evolution-calendar-factory/evolution-calendar-factory.c
+++ b/services/evolution-calendar-factory/evolution-calendar-factory.c
@@ -126,7 +126,7 @@ main (gint argc,
                exit (EXIT_FAILURE);
        }
 
-       g_print ("Server is up and running...\n");
+       g_debug ("Server is up and running...");
 
        /* This SHOULD keep the server's use
         * count from ever reaching zero. */
@@ -137,7 +137,7 @@ main (gint argc,
 
        g_object_unref (server);
 
-       g_print ("Bye.\n");
+       g_debug ("Bye.");
 
        return 0;
 }
diff --git a/services/evolution-source-registry/evolution-source-registry.c 
b/services/evolution-source-registry/evolution-source-registry.c
index a485c00..1657caa 100644
--- a/services/evolution-source-registry/evolution-source-registry.c
+++ b/services/evolution-source-registry/evolution-source-registry.c
@@ -190,7 +190,7 @@ reload:
                exit (EXIT_FAILURE);
        }
 
-       g_print ("Server is up and running...\n");
+       g_debug ("Server is up and running...");
 
        /* Keep the server from quitting on its own.
         * We don't have a way of tracking number of
@@ -221,7 +221,7 @@ reload:
                goto reload;
        }
 
-       g_print ("Bye.\n");
+       g_debug ("Bye.");
 
        return 0;
 }
diff --git a/services/evolution-user-prompter/evolution-user-prompter.c 
b/services/evolution-user-prompter/evolution-user-prompter.c
index 682be17..ae2dd2e 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;
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]