* mu-maildir: better logging

This commit is contained in:
Dirk-Jan C. Binnema 2010-01-06 01:26:41 +02:00
parent 5f27884689
commit 498c6418df
1 changed files with 2 additions and 4 deletions

View File

@ -334,7 +334,7 @@ process_dir_entry (const char* path, struct dirent *entry,
case DT_DIR: {
/* if it has a noindex file, we ignore this dir */
if (has_noindex_file (fullpath)) {
g_message ("ignoring dir %s", fullpath);
g_debug ("ignoring dir %s", fullpath);
return MU_OK;
}
@ -454,8 +454,6 @@ _clear_links (const gchar* dirname, DIR *dir)
{
struct dirent *entry;
gboolean rv;
g_message ("clearlinks: %s", dirname);
rv = TRUE;
while ((entry = readdir (dir)) && rv) {
@ -506,7 +504,7 @@ mu_maildir_clear_links (const gchar* path)
return FALSE;
}
g_message ("remove symlinks from %s", path);
g_debug ("remove symlinks from %s", path);
rv = _clear_links (path, dir);
closedir (dir);