From d54b2056281ed5cd7a0f28ccfeb706034f27549e Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 22 Apr 2018 13:11:16 +0300 Subject: [PATCH] imap-hibernate: Log error when connect(imap-master) fails It was previously logged only with info-level. --- src/imap-hibernate/imap-client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/imap-hibernate/imap-client.c b/src/imap-hibernate/imap-client.c index aba09fd813..cc4edd303e 100644 --- a/src/imap-hibernate/imap-client.c +++ b/src/imap-hibernate/imap-client.c @@ -223,6 +223,7 @@ static bool imap_client_try_move_back(struct imap_client *client) return TRUE; } else if (ret < 0) { /* failed to connect to the imap-master socket */ + i_error("Failed to unhibernate client: %s", error); imap_client_destroy(&client, error); return TRUE; }