From: Kazunori Fujiwara Date: Thu, 23 Aug 2012 10:24:44 +0000 (+0900) Subject: [2138] Removed logging when auth processes "getstats" command. X-Git-Tag: trac2351_base~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8f8eafe5ed789692b1fbcda3172a7b508b50daa;p=thirdparty%2Fkea.git [2138] Removed logging when auth processes "getstats" command. --- diff --git a/src/bin/auth/auth_messages.mes b/src/bin/auth/auth_messages.mes index 7209cb60ac..01a18a17f3 100644 --- a/src/bin/auth/auth_messages.mes +++ b/src/bin/auth/auth_messages.mes @@ -164,10 +164,6 @@ a command on the command channel. % AUTH_RECEIVED_NOTIFY received incoming NOTIFY for zone name %1, zone class %2 This is a debug message reporting that an incoming NOTIFY was received. -% AUTH_RECEIVED_GETSTATS command 'getstats' received -This is a debug message issued when the authoritative server has received -a command from the statistics module to send it data. - % AUTH_RESPONSE_FAILURE exception while building response to query: %1 This is a debug message, generated by the authoritative server when an attempt to create a response to a received DNS packet has failed. The diff --git a/src/bin/auth/command.cc b/src/bin/auth/command.cc index 225f581e88..578ddc9e86 100644 --- a/src/bin/auth/command.cc +++ b/src/bin/auth/command.cc @@ -148,7 +148,6 @@ class GetStatsCommand : public AuthCommand { public: virtual ConstElementPtr exec(AuthSrv& server, isc::data::ConstElementPtr) { - LOG_DEBUG(auth_logger, DBG_AUTH_OPS, AUTH_RECEIVED_GETSTATS); return (createAnswer(0, server.getStatistics())); } };