From: bert hubert Date: Thu, 23 May 2013 13:21:39 +0000 (+0200) Subject: silence debugging output from our Lua authoritative module (axfr filter) X-Git-Tag: auth-3.3-rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9b2de332cf38ef27c0d8d9ffbf907dcc2b34e10;p=thirdparty%2Fpdns.git silence debugging output from our Lua authoritative module (axfr filter) --- diff --git a/pdns/lua-auth.cc b/pdns/lua-auth.cc index 9dac2a010e..f9109322c6 100644 --- a/pdns/lua-auth.cc +++ b/pdns/lua-auth.cc @@ -48,7 +48,7 @@ bool AuthLua::axfrfilter(const ComboAddress& remote, const string& zone, const D { lua_getglobal(d_lua, "axfrfilter"); if(!lua_isfunction(d_lua, -1)) { - cerr<<"No such function 'axfrfilter'\n"; + // cerr<<"No such function 'axfrfilter'\n"; lua_pop(d_lua, 1); return false; } @@ -91,7 +91,7 @@ bool AuthLua::axfrfilter(const ComboAddress& remote, const string& zone, const D #else int tableLen = lua_objlen(d_lua, 2); #endif - cerr<<"Returned "<