]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2138] Removed logging when auth processes "getstats" command.
authorKazunori Fujiwara <fujiwara@wide.ad.jp>
Thu, 23 Aug 2012 10:24:44 +0000 (19:24 +0900)
committerKazunori Fujiwara <fujiwara@wide.ad.jp>
Thu, 23 Aug 2012 10:24:44 +0000 (19:24 +0900)
src/bin/auth/auth_messages.mes
src/bin/auth/command.cc

index 7209cb60ac95adcd8cf87366d4ddd187db05ca57..01a18a17f3a2e722d3565ad12a071f6270c6f594 100644 (file)
@@ -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
index 225f581e88115fbde46ba9fb181c4920391113c3..578ddc9e86e46d49c37fc45507aebc8fa66ecf45 100644 (file)
@@ -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()));
     }
 };