From f7e0850ff206d1aed3922000a8cba39d7bc8848a Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Tue, 9 Mar 2010 13:35:22 -0500 Subject: Remove some unnecessary terminal messages. Don't need to see status messages on the terminal when going online, offline or quitting. --- shell/e-shell.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/shell/e-shell.c b/shell/e-shell.c index 88638b0a5c..d295b99019 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -196,8 +196,6 @@ shell_ready_for_offline (EShell *shell, shell->priv->online = FALSE; g_object_notify (G_OBJECT (shell), "online"); - - g_message ("Offline preparations complete."); } static void @@ -207,8 +205,6 @@ shell_prepare_for_offline (EShell *shell) if (shell->priv->preparing_for_line_change != NULL) return; - g_message ("Preparing for offline mode..."); - shell->priv->preparing_for_line_change = e_activity_new (_("Preparing to go offline...")); @@ -250,8 +246,6 @@ shell_ready_for_online (EShell *shell, shell->priv->online = TRUE; g_object_notify (G_OBJECT (shell), "online"); - - g_message ("Online preparations complete."); } static void @@ -261,8 +255,6 @@ shell_prepare_for_online (EShell *shell) if (shell->priv->preparing_for_line_change != NULL) return; - g_message ("Preparing for online mode..."); - shell->priv->preparing_for_line_change = e_activity_new (_("Preparing to go online...")); @@ -304,8 +296,6 @@ shell_ready_for_quit (EShell *shell, /* Finalize the activity. */ g_object_ref (activity); - g_message ("Quit preparations complete."); - /* This handles a strange corner case where --quit is given on * the command-line but no other Evolution process is running. * We bring all the shell backends up and then immediately run @@ -333,8 +323,6 @@ shell_prepare_for_quit (EShell *shell) if (shell->priv->preparing_for_quit != NULL) return; - g_message ("Preparing to quit..."); - shell->priv->preparing_for_quit = e_activity_new (_("Preparing to quit...")); -- cgit v1.2.3