aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-09-02 04:41:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-02 04:41:11 +0800
commite37231b9e13aa8b7c0803a370b5463a9e4f390cb (patch)
tree721590ea194046dc7db003ac259072308782187d /plugins
parent5f4b5eb1fd30bfb08c1b1898264e696482a390cc (diff)
downloadgsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar.gz
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar.bz2
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar.lz
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar.xz
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.tar.zst
gsoc2013-evolution-e37231b9e13aa8b7c0803a370b5463a9e4f390cb.zip
Kill debug messages in default-mailer plugin.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/default-mailer/default-mailer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c
index a651441e57..ebfa0f829e 100644
--- a/plugins/default-mailer/default-mailer.c
+++ b/plugins/default-mailer/default-mailer.c
@@ -48,8 +48,6 @@ evolution_is_default_mailer (const gchar *mailto_command)
if (mailto_command == NULL)
return FALSE;
- g_debug ("mailto URL command: %s", mailto_command);
-
/* tokenize the mailto command */
if (!g_shell_parse_argv (mailto_command, &argc, &argv, NULL))
return FALSE;
@@ -58,7 +56,6 @@ evolution_is_default_mailer (const gchar *mailto_command)
/* check the basename of the first token */
basename = g_path_get_basename (argv[0]);
- g_debug ("mailto URL program: %s", basename);
is_default = g_str_has_prefix (basename, "evolution");
g_free (basename);