]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-storage: Log alt path when mail_debug=yes
authorTimo Sirainen <tss@iki.fi>
Tue, 16 Aug 2011 19:36:23 +0000 (22:36 +0300)
committerTimo Sirainen <tss@iki.fi>
Tue, 16 Aug 2011 19:36:23 +0000 (22:36 +0300)
src/lib-storage/mailbox-list.c

index 7295c41ea5a5ad41269ffaf9ed7fbf0dfd2ef091..6522f7ae4b9892fc431893c914222e20de13f10e 100644 (file)
@@ -183,14 +183,15 @@ int mailbox_list_create(const char *driver, struct mail_namespace *ns,
        }
 
        if (ns->mail_set->mail_debug) {
-               i_debug("%s: root=%s, index=%s, control=%s, inbox=%s",
+               i_debug("%s: root=%s, index=%s, control=%s, inbox=%s, alt=%s",
                        list->name,
                        list->set.root_dir == NULL ? "" : list->set.root_dir,
                        list->set.index_dir == NULL ? "" : list->set.index_dir,
                        list->set.control_dir == NULL ?
                        "" : list->set.control_dir,
                        list->set.inbox_path == NULL ?
-                       "" : list->set.inbox_path);
+                       "" : list->set.inbox_path,
+                       list->set.alt_dir == NULL ? "" : list->set.alt_dir);
        }
        mail_namespace_finish_list_init(ns, list);