aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-10 02:35:22 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-10 02:35:22 +0800
commitf7e0850ff206d1aed3922000a8cba39d7bc8848a (patch)
tree975c181afc3320c8fcc784534166b569040d8311 /shell
parentd5569e7303f6c3b7e54d098e5506783524cfd73c (diff)
downloadgsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar.gz
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar.bz2
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar.lz
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar.xz
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.tar.zst
gsoc2013-evolution-f7e0850ff206d1aed3922000a8cba39d7bc8848a.zip
Remove some unnecessary terminal messages.
Don't need to see status messages on the terminal when going online, offline or quitting.
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell.c12
1 files changed, 0 insertions, 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..."));