[gnome-session] shell: don't scream if shell isn't around



commit 2c9448bbe456dd2b29e42952151ff15baf5d733f
Author: Ray Strode <rstrode redhat com>
Date:   Fri Jan 28 15:54:27 2011 -0500

    shell: don't scream if shell isn't around
    
    It's not necessarily a problem if the shell isn't around,
    so we shouldn't g_warning it.

 gnome-session/gsm-shell.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnome-session/gsm-shell.c b/gnome-session/gsm-shell.c
index 0144e17..ec5f8eb 100644
--- a/gnome-session/gsm-shell.c
+++ b/gnome-session/gsm-shell.c
@@ -326,8 +326,8 @@ gsm_shell_init (GsmShell *shell)
         error = NULL;
 
         if (!gsm_shell_ensure_connection (shell, &error)) {
-                g_warning ("Could not connect to the shell: %s",
-                           error->message);
+                g_debug ("Could not connect to the shell: %s",
+                         error->message);
                 g_error_free (error);
         }
 }



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