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 2012/12/03 22:57:43 UTC

[3/3] git commit: [#5354] error instead of warn, for failure to register project

[#5354] error instead of warn, for failure to register project


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

Branch: refs/heads/master
Commit: 8c8ad4dde9e8dcc8037d58978eb9852f5c59b22e
Parents: 6cead11
Author: Dave Brondsema <db...@geek.net>
Authored: Mon Dec 3 16:07:08 2012 +0000
Committer: Cory Johns <jo...@geek.net>
Committed: Mon Dec 3 21:56:29 2012 +0000

----------------------------------------------------------------------
 Allura/allura/controllers/project.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/8c8ad4dd/Allura/allura/controllers/project.py
----------------------------------------------------------------------
diff --git a/Allura/allura/controllers/project.py b/Allura/allura/controllers/project.py
index f1c0ada..0f2e400 100644
--- a/Allura/allura/controllers/project.py
+++ b/Allura/allura/controllers/project.py
@@ -192,7 +192,7 @@ class NeighborhoodController(object):
             flash("Project creation rate limit exceeded.  Please try again later.", 'error')
             redirect('add_project')
         except Exception as e:
-            log.warn('error registering project %s', project_unixname, exc_info=True)
+            log.error('error registering project: %s', project_unixname, exc_info=True)
             flash('Internal Error. Please try again later.', 'error')
             redirect('add_project')