Browse Source

[trac620] Removed too repeated verbose messages in two cases of:
- when auth sends statistics data to stats
- when stats receives statistics data from other modules

Naoki Kambe 14 years ago
parent
commit
776f5ebd79
2 changed files with 0 additions and 7 deletions
  1. 0 4
      src/bin/auth/statistics.cc
  2. 0 3
      src/bin/stats/stats.py.in

+ 0 - 4
src/bin/auth/statistics.cc

@@ -91,10 +91,6 @@ AuthCountersImpl::submitStatistics() const {
         const int seq =
             statistics_session_->group_sendmsg(statistics_element, "Stats");
         isc::data::ConstElementPtr env, answer;
-        if (verbose_mode_) {
-            std::cerr << "[b10-auth] "
-                      << "send statistics data" << std::endl;
-        }
         // TODO: parse and check response from statistics module
         // currently it just returns empty message
         statistics_session_->group_recvmsg(env, answer, false, seq);

+ 0 - 3
src/bin/stats/stats.py.in

@@ -276,9 +276,6 @@ class CCSessionListener(Listener):
         """
         handle set command
         """
-        if self.verbose:
-            sys.stdout.write("[b10-stats] 'set' command received, args: "+str(args)+"\n")
-
         # 'args' must be dictionary type
         self.stats_data.update(args['stats_data'])