]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
make logging output identical 2975/head
authorArsen Stasic <arsen.stasic@gmail.com>
Tue, 1 Dec 2015 16:27:01 +0000 (17:27 +0100)
committerArsen Stasic <arsen.stasic@gmail.com>
Tue, 1 Dec 2015 16:27:01 +0000 (17:27 +0100)
'pdns_control notify' and 'pdns_control notify-host' produce now the same output message

pdns/dynhandler.cc

index 472fd692a4800779b2fefe431be93a869ff505a8..9249c141b5e9f7cb7df4d758765e000d8d975f54 100644 (file)
@@ -265,7 +265,7 @@ string DLNotifyHostHandler(const vector<string>&parts, Utility::pid_t ppid)
     return "Unable to convert '"+parts[2]+"' to an IP address";
   }
   
-  L<<Logger::Warning<<"Notification request to host "<<parts[2]<<" for domain '"<<parts[1]<<"' received"<<endl;
+  L<<Logger::Warning<<"Notification request to host "<<parts[2]<<" for domain '"<<parts[1]<<"' received from operator"<<endl;
   Communicator.notify(DNSName(parts[1]), parts[2]);
   return "Added to queue";
 }