]> granicus.if.org Git - pdns/commitdiff
disarm debug output
authorKees Monshouwer <mind04@monshouwer.org>
Sun, 10 Nov 2013 21:27:26 +0000 (22:27 +0100)
committermind04 <mind04@monshouwer.org>
Wed, 13 Nov 2013 11:06:02 +0000 (12:06 +0100)
modules/bindbackend/binddnssec.cc

index 0b93695c1d52617bb98de86aa1da1371d6b580fa..f17c0d6fbc3a25a4a303f2fedfeb7d29d58039a4 100644 (file)
@@ -185,9 +185,9 @@ bool Bind2Backend::removeDomainKey(const string& name, unsigned int id)
 {
   if(!d_dnssecdb)
     return false;
-  
-  cerr<<"Asked to remove key "<<id<<" in zone '"<<name<<"'\n";
-  
+
+  // cerr<<"Asked to remove key "<<id<<" in zone '"<<name<<"'\n";
+
   boost::format fmt("delete from cryptokeys where domain='%s' and id=%d");
   try {
     d_dnssecdb->doCommand((fmt % d_dnssecdb->escape(name) % id).str());