From 856ccbb48cdd6ae745e96b5d59b2a32882597374 Mon Sep 17 00:00:00 2001
From: Stephan Bosch <stephan@rename-it.nl>
Date: Thu, 28 Mar 2013 21:31:59 +0100
Subject: [PATCH] lib-sievestorage: A few debug messages were still logged
 using i_info() instead of i_debug().

---
 src/lib-sievestorage/sieve-storage-script.c | 2 +-
 src/lib-sievestorage/sieve-storage.c        | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib-sievestorage/sieve-storage-script.c b/src/lib-sievestorage/sieve-storage-script.c
index 7314addcb..56290c784 100644
--- a/src/lib-sievestorage/sieve-storage-script.c
+++ b/src/lib-sievestorage/sieve-storage-script.c
@@ -356,7 +356,7 @@ static bool sieve_storage_rescue_regular_file(struct sieve_storage *storage)
 
 	if ( S_ISLNK( st.st_mode ) ) {
 		if ( storage->debug )
-			i_info( "sieve-storage: nothing to rescue %s.", storage->active_path);
+			i_debug( "sieve-storage: nothing to rescue %s.", storage->active_path);
 		return TRUE; /* Nothing to rescue */
 	}
 
diff --git a/src/lib-sievestorage/sieve-storage.c b/src/lib-sievestorage/sieve-storage.c
index 9c58cc690..b54f9808d 100644
--- a/src/lib-sievestorage/sieve-storage.c
+++ b/src/lib-sievestorage/sieve-storage.c
@@ -447,11 +447,11 @@ static struct sieve_storage *_sieve_storage_create
 
 	if ( debug ) {
 		if ( storage->max_storage > 0 ) {
-			i_info("sieve-storage: quota: storage limit: %llu bytes",
+			i_debug("sieve-storage: quota: storage limit: %llu bytes",
 				(unsigned long long int) storage->max_storage);
 		}
 		if ( storage->max_scripts > 0 ) {
-			i_info("sieve-storage: quota: script count limit: %llu scripts",
+			i_debug("sieve-storage: quota: script count limit: %llu scripts",
 				(unsigned long long int) storage->max_scripts);
 		}
 	}
-- 
GitLab