powerdns plugin: Promoted the "not found" message from DEBUG to INFO.
authorFlorian Forster <octo@noris.net>
Mon, 5 May 2008 15:30:13 +0000 (17:30 +0200)
committerFlorian Forster <octo@noris.net>
Mon, 5 May 2008 15:30:13 +0000 (17:30 +0200)
Since users may configure this themselves, they should know when it
doesn't work, so it's not a debug issue anymore.

src/powerdns.c

index dee2c70..ca3f38c 100644 (file)
@@ -264,7 +264,7 @@ static void submit (const char *plugin_instance, /* {{{ */
 
   if (i >= lookup_table_length)
   {
-    DEBUG ("powerdns plugin: submit: Not found in lookup table: %s = %s;",
+    INFO ("powerdns plugin: submit: Not found in lookup table: %s = %s;",
         pdns_type, value);
     return;
   }