[gnome-online-accounts/gnome--3-18: 1/2] daemon: Use g_debug instead of g_info and drop the extra newline



commit 588d19ac7a8924e05d96c8ccec65c80c22f7ba38
Author: Debarshi Ray <debarshir gnome org>
Date:   Tue Oct 27 17:44:46 2015 +0100

    daemon: Use g_debug instead of g_info and drop the extra newline
    
    I can't think of a good reason to use g_info instead of g_debug, which
    is much more commonly used in the codebase.

 src/daemon/goadaemon.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/daemon/goadaemon.c b/src/daemon/goadaemon.c
index e48e1a9..fe62d1e 100644
--- a/src/daemon/goadaemon.c
+++ b/src/daemon/goadaemon.c
@@ -150,7 +150,7 @@ on_config_file_monitor_timeout (gpointer user_data)
   GoaDaemon *self = GOA_DAEMON (user_data);
 
   self->config_timeout_id = 0;
-  g_info ("Reloading configuration files\n");
+  g_debug ("Reloading configuration files");
   goa_daemon_reload_configuration (self);
 
   return G_SOURCE_REMOVE;
@@ -177,7 +177,7 @@ on_check_credentials_timeout (gpointer user_data)
   GoaDaemon *self = GOA_DAEMON (user_data);
 
   self->credentials_timeout_id = 0;
-  g_info ("Checking credentials\n");
+  g_debug ("Checking credentials");
   goa_daemon_check_credentials (self);
 
   return G_SOURCE_REMOVE;


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