Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9063A10D59 for ; Tue, 23 Jul 2013 03:14:06 +0000 (UTC) Received: (qmail 66742 invoked by uid 500); 23 Jul 2013 03:14:05 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 66724 invoked by uid 500); 23 Jul 2013 03:14:05 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 66716 invoked by uid 99); 23 Jul 2013 03:14:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jul 2013 03:14:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1507A8B16B9; Tue, 23 Jul 2013 03:14:01 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brondsem@apache.org To: allura-commits@incubator.apache.org Message-Id: <15092e08b131486db32760f665bf64c2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [#6456] add logger to google importer Date: Tue, 23 Jul 2013 03:14:01 +0000 (UTC) Updated Branches: refs/heads/master 5f68604db -> 64039a3ec [#6456] add logger to google importer Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/64039a3e Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/64039a3e Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/64039a3e Branch: refs/heads/master Commit: 64039a3eca6e06f44d1a30a5765b053f910c7aa0 Parents: 5f68604 Author: Dave Brondsema Authored: Tue Jul 23 03:13:52 2013 +0000 Committer: Dave Brondsema Committed: Tue Jul 23 03:13:52 2013 +0000 ---------------------------------------------------------------------- ForgeImporters/forgeimporters/google/project.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/64039a3e/ForgeImporters/forgeimporters/google/project.py ---------------------------------------------------------------------- diff --git a/ForgeImporters/forgeimporters/google/project.py b/ForgeImporters/forgeimporters/google/project.py index c3e4d17..32b1976 100644 --- a/ForgeImporters/forgeimporters/google/project.py +++ b/ForgeImporters/forgeimporters/google/project.py @@ -15,12 +15,13 @@ # specific language governing permissions and limitations # under the License. +import logging + from tg import expose, validate, flash, redirect, config from tg.decorators import with_trailing_slash from pylons import tmpl_context as c from formencode import validators as fev, schema -from allura import model as M from allura.lib.decorators import require_post from allura.lib.widgets.forms import NeighborhoodProjectShortNameValidator from allura.lib.security import require_access @@ -31,6 +32,8 @@ from .. import base from . import tasks +log = logging.getLogger(__name__) + class GoogleCodeProjectForm(schema.Schema): neighborhood = fev.PlainText(not_empty=True)