]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2657. [cleanup] Lower "journal file <path> does not exist, creating it"
authorMark Andrews <marka@isc.org>
Tue, 25 Aug 2009 07:41:28 +0000 (07:41 +0000)
committerMark Andrews <marka@isc.org>
Tue, 25 Aug 2009 07:41:28 +0000 (07:41 +0000)
                        log level to debug 1. [RT #20058]

CHANGES
lib/dns/journal.c

diff --git a/CHANGES b/CHANGES
index 380cfde7758cd6a8396950f09f2de65d3b128fc8..487213201884260d758173e2e040cbb51d092f32 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2657.  [cleanup]       Lower "journal file <path> does not exist, creating it"
+                       log level to debug 1. [RT #20058]
+
 2656.  [func]          win32: add a "tools only" check box to the installer
                        which causes it to only install dig, host, nslookup,
                        nsupdate and relevent dlls.  [RT #19998]
index b797021531651a6350832f598c8367a051f4e45d..bc1ba0cddaf58f26a43d0a8bab8774baac9f350c 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: journal.c,v 1.105 2009/01/17 23:47:42 tbox Exp $ */
+/* $Id: journal.c,v 1.106 2009/08/25 07:41:28 marka Exp $ */
 
 #include <config.h>
 
@@ -562,11 +562,9 @@ journal_open(isc_mem_t *mctx, const char *filename, isc_boolean_t write,
 
        if (result == ISC_R_FILENOTFOUND) {
                if (create) {
-                       isc_log_write(JOURNAL_COMMON_LOGARGS,
-                                     ISC_LOG_INFO,
+                       isc_log_write(JOURNAL_COMMON_LOGARGS, ISC_LOG_DEBUG(1),
                                      "journal file %s does not exist, "
-                                     "creating it",
-                                     j->filename);
+                                     "creating it", j->filename);
                        CHECK(journal_file_create(mctx, filename));
                        /*
                         * Retry.