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 17:32:22 UTC

[29/31] git commit: Fixed errantly removed logger

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/96d7d5f5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/96d7d5f5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/96d7d5f5

Branch: refs/heads/cj/merge-request-4
Commit: 96d7d5f531e97336ccdaf40df926c936f441f6aa
Parents: 77325b8
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 15:31:37 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/96d7d5f5/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):