You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2019/07/22 14:37:26 UTC

[whimsy] branch master updated: Oops, drop debug

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 297d817  Oops, drop debug
297d817 is described below

commit 297d817b8858cfbcb716d1159624fc1f88429621
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jul 22 15:37:23 2019 +0100

    Oops, drop debug
---
 www/officers/list-traffic.cgi | 2 --
 1 file changed, 2 deletions(-)

diff --git a/www/officers/list-traffic.cgi b/www/officers/list-traffic.cgi
index 6470e89..fcc1e92 100755
--- a/www/officers/list-traffic.cgi
+++ b/www/officers/list-traffic.cgi
@@ -96,7 +96,6 @@ def display_monthly(months:, nondiscuss:)
   months.sort.reverse.each do |month|
     data = get_mails_month(yearmonth: month, nondiscuss: nondiscuss)
     next if data.empty?
-    $stderr.puts data.inspect
     data[MAILS] ||= []
     data[TOOLS] ||= []
     _h1 "board@ statistics for #{month} (total mails: #{data[MAILS].length + data[TOOLS].length})", id: "#{month}"
@@ -208,7 +207,6 @@ _html do
       }
     ) do
       months = Dir["#{SRV_MAIL}/*"].map {|path| File.basename(path).untaint}.grep(/^\d+$/)
-      $stderr.puts months.inspect
       if ENV['QUERY_STRING'].include? 'week'
         display_weekly(months: months, nondiscuss: MailUtils::NONDISCUSSION_SUBJECTS['<board.apache.org>'])
       else