Return-Path: X-Original-To: apmail-allura-commits-archive@www.apache.org Delivered-To: apmail-allura-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3012A17711 for ; Fri, 18 Sep 2015 21:40:18 +0000 (UTC) Received: (qmail 34919 invoked by uid 500); 18 Sep 2015 21:40:18 -0000 Delivered-To: apmail-allura-commits-archive@allura.apache.org Received: (qmail 34879 invoked by uid 500); 18 Sep 2015 21:40:18 -0000 Mailing-List: contact commits-help@allura.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@allura.apache.org Delivered-To: mailing list commits@allura.apache.org Received: (qmail 34850 invoked by uid 99); 18 Sep 2015 21:40:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Sep 2015 21:40:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CBD70E03D0; Fri, 18 Sep 2015 21:40:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: heiths@apache.org To: commits@allura.apache.org Date: Fri, 18 Sep 2015 21:40:17 -0000 Message-Id: <5808de7e09404f728c3d7bbc59816b60@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] allura git commit: [#7957] silence some EasyWidgets logging that pops up when running with gunicorn Repository: allura Updated Branches: refs/heads/master 656dfa307 -> 1d6f87b4f [#7957] silence some EasyWidgets logging that pops up when running with gunicorn Project: http://git-wip-us.apache.org/repos/asf/allura/repo Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/c7195db5 Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/c7195db5 Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/c7195db5 Branch: refs/heads/master Commit: c7195db505eb47727b32f94d599f3fe4ca694934 Parents: 656dfa3 Author: Dave Brondsema Authored: Thu Sep 17 21:07:45 2015 +0000 Committer: Dave Brondsema Committed: Thu Sep 17 21:07:45 2015 +0000 ---------------------------------------------------------------------- Allura/development.ini | 8 +++++++- Allura/docker-dev.ini | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/allura/blob/c7195db5/Allura/development.ini ---------------------------------------------------------------------- diff --git a/Allura/development.ini b/Allura/development.ini index ebca7e5..d8eabf9 100644 --- a/Allura/development.ini +++ b/Allura/development.ini @@ -531,7 +531,7 @@ override_root = task ; TurboGears will use controllers/task.py as root controlle ; https://docs.python.org/2/library/logging.config.html#configuration-file-format ; [loggers] -keys = root, allura, sqlalchemy, paste, pylons, taskdstatus, timermiddleware, tmw_details +keys = root, allura, sqlalchemy, paste, pylons, ew, taskdstatus, timermiddleware, tmw_details [handlers] keys = console, stats, taskdstatus, timermiddleware @@ -567,6 +567,12 @@ level = INFO qualname = pylons handlers = +[logger_ew] +; easy widgets +level = WARN +qualname = ew +handlers = + [logger_tmw_details] ; DEBUG will include every instrumented call in our logging level = INFO http://git-wip-us.apache.org/repos/asf/allura/blob/c7195db5/Allura/docker-dev.ini ---------------------------------------------------------------------- diff --git a/Allura/docker-dev.ini b/Allura/docker-dev.ini index d35fd17..7cc2272 100644 --- a/Allura/docker-dev.ini +++ b/Allura/docker-dev.ini @@ -58,7 +58,7 @@ use = main override_root = task ; TurboGears will use controllers/task.py as root controller [loggers] -keys = root, allura, sqlalchemy, paste, pylons, taskdstatus, timermiddleware, tmw_details +keys = root, allura, sqlalchemy, paste, pylons, ew, taskdstatus, timermiddleware, tmw_details [handlers] keys = console, stats, taskdstatus, timermiddleware @@ -94,6 +94,12 @@ level = INFO qualname = pylons handlers = +[logger_ew] +; easy widgets +level = WARN +qualname = ew +handlers = + [logger_tmw_details] ; DEBUG will include every instrumented call in our logging level = INFO