PC.insert(p, r, r->getMinTTL()); // in the packet cache
}
catch(DBException &e) {
- L<<Logger::Error<<"Database module reported condition which prevented lookup ("+e.reason+") sending out servfail"<<endl;
+ L<<Logger::Error<<"Backend reported condition which prevented lookup ("+e.reason+") sending out servfail"<<endl;
r->setRcode(RCode::ServFail);
S.inc("servfail-packets");
S.ringAccount("servfail-queries",p->qdomain);
}
catch(AhuException &e) {
- L<<Logger::Error<<"Database module reported permanent error which prevented lookup ("+e.reason+") sending out servfail"<<endl;
+ L<<Logger::Error<<"Backend reported permanent error which prevented lookup ("+e.reason+") sending out servfail"<<endl;
throw; // we WANT to die at this point
}
catch(std::exception &e) {