You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/06/03 20:56:28 UTC

[7/7] git commit: [#6325] Fixed errantly removed logger

[#6325] Fixed errantly removed logger


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/8b07bc79
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/8b07bc79
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/8b07bc79

Branch: refs/heads/cj/6325
Commit: 8b07bc79c8fb5708950366fffa46838ae90cbd2a
Parents: b67d608
Author: Cory Johns <cj...@slashdotmedia.com>
Authored: Mon Jun 3 15:31:12 2013 +0000
Committer: Cory Johns <cj...@slashdotmedia.com>
Committed: Mon Jun 3 18:55:59 2013 +0000

----------------------------------------------------------------------
 Allura/allura/config/app_cfg.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/8b07bc79/Allura/allura/config/app_cfg.py
----------------------------------------------------------------------
diff --git a/Allura/allura/config/app_cfg.py b/Allura/allura/config/app_cfg.py
index 854ad0b..5cc93f7 100644
--- a/Allura/allura/config/app_cfg.py
+++ b/Allura/allura/config/app_cfg.py
@@ -30,6 +30,8 @@ convert them into boolean, for example, you should use the
     setting = asbool(global_conf.get('the_setting'))
 
 """
+import logging
+
 import tg
 import jinja2
 import pylons
@@ -44,6 +46,7 @@ import allura
 from allura.lib import app_globals, helpers
 from allura.lib.package_path_loader import PackagePathLoader
 
+log = logging.getLogger(__name__)
 
 class ForgeConfig(AppConfig):