]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
reduce severity level of successful mysql connection to 'Info' - by popular demand ;-)
authorBert Hubert <bert.hubert@netherlabs.nl>
Thu, 11 Oct 2012 09:52:07 +0000 (09:52 +0000)
committerBert Hubert <bert.hubert@netherlabs.nl>
Thu, 11 Oct 2012 09:52:07 +0000 (09:52 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@2800 d19b8d6e-7fed-0310-83ef-9ca221ded41b

modules/gmysqlbackend/gmysqlbackend.cc

index c9cf59971326f4b9bb8c05a04a57264a5ab13d04..74e384f4b6b1f738f14e77eb21fe2fea9279abcf 100644 (file)
@@ -35,7 +35,7 @@ gMySQLBackend::gMySQLBackend(const string &mode, const string &suffix)  : GSQLBa
     L<<Logger::Error<<mode<<" Connection failed: "<<e.txtReason()<<endl;
     throw AhuException("Unable to launch "+mode+" connection: "+e.txtReason());
   }
-  L<<Logger::Warning<<mode<<" Connection successful"<<endl;
+  L<<Logger::Info<<mode<<" Connection successful"<<endl;
 }
 
 class gMySQLFactory : public BackendFactory