aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-07-24 23:41:31 +0800
committerPeter Williams <peterw@src.gnome.org>2001-07-24 23:41:31 +0800
commit57d3c094da38587251d43d11784d40d136b9fb6b (patch)
tree965f000b30019c6b1656d3b696581e492ab77490
parent7604a13073c8f82ffd127764030af0f8ad228d1b (diff)
downloadgsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar.gz
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar.bz2
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar.lz
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar.xz
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.tar.zst
gsoc2013-evolution-57d3c094da38587251d43d11784d40d136b9fb6b.zip
Make the error reporting a little but more descriptive.
2001-07-24 Peter Williams <peterw@ximian.com> * mail-folder-cache.c (update_idle): Make the error reporting a little but more descriptive. svn path=/trunk/; revision=11341
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-folder-cache.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index cd6220f937..44a44cfbe5 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,10 @@
2001-07-24 Peter Williams <peterw@ximian.com>
+ * mail-folder-cache.c (update_idle): Make the error reporting a little
+ but more descriptive.
+
+2001-07-24 Peter Williams <peterw@ximian.com>
+
* mail-config.glade: Add new label widgets with a message that SSL
isn't supported.
diff --git a/mail/mail-folder-cache.c b/mail/mail-folder-cache.c
index 621a8b873c..d31441dabe 100644
--- a/mail/mail-folder-cache.c
+++ b/mail/mail-folder-cache.c
@@ -214,13 +214,13 @@ update_idle (gpointer user_data)
/* Check if this makes sense */
if (!(mfi->flags & MAIL_FIF_NAME_VALID)) {
- g_warning ("Folder cache update info without \'name\' set");
+ g_warning ("Folder cache update info of \'%s\' without \'name\' set", mfi->uri);
UNLOCK_FOLDERS ();
return FALSE;
}
if (mfi->update_mode == MAIL_FIUM_UNKNOWN) {
- g_warning ("Folder cache update info without \'mode\' set");
+ g_warning ("Folder cache update info of \'%s\' without \'mode\' set", mfi->uri);
UNLOCK_FOLDERS ();
return FALSE;
}