]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
add getting detail of specific OT Condition, keyed by netmask
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 13 Jan 2026 16:02:04 +0000 (17:02 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 13 Jan 2026 16:02:04 +0000 (17:02 +0100)
Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
pdns/recursordist/ws-recursor.cc

index ff56da38318b7aba370b2127644b877090c23d23..61c8f77d9082dd7ccfb8312a42218a6bd59da31e 100644 (file)
@@ -617,9 +617,7 @@ static void fillOTCondition(const Netmask& netmask, HttpResponse* resp)
 static void apiServerOTConditionDetailGET(HttpRequest* req, HttpResponse* resp)
 {
   try {
-    cerr << req->parameters["id"] << endl;
     Netmask netmask{req->parameters["id"]};
-    cerr << netmask.toString() << endl;
     fillOTCondition(netmask, resp);
   }
   catch (NetmaskException& ex) {