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 2021/04/07 00:04:07 UTC

[whimsy] branch master updated: Reduce log noise

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 3fe3501  Reduce log noise
3fe3501 is described below

commit 3fe35018957c1256b09f27794369ecd755747ad2
Author: Sebb <se...@apache.org>
AuthorDate: Wed Apr 7 01:03:58 2021 +0100

    Reduce log noise
---
 lib/whimsy/asf/orgchart.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/whimsy/asf/orgchart.rb b/lib/whimsy/asf/orgchart.rb
index 087e0c4..035a65b 100644
--- a/lib/whimsy/asf/orgchart.rb
+++ b/lib/whimsy/asf/orgchart.rb
@@ -30,7 +30,7 @@ module ASF # :nodoc:
             begin
               data['info']['id'] = ASF::Committee.officers.select{|o| o.name == post}.first.chairs.first[:id]
             rescue
-              Wunderbar.warn "Cannot find chair for #{name}"
+              Wunderbar.info "Cannot find chair for #{name}"
             end
           end
         else
@@ -38,7 +38,7 @@ module ASF # :nodoc:
           if tmp
             data['info']['id'] = tmp.chairs.first[:id]
           else
-            Wunderbar.warn "Cannot find chair for #{name}"
+            Wunderbar.info "Cannot find chair for #{name}"
           end
         end
         data['mtime'] = File.mtime(file).to_f