From 354a03c499b4af0cc83b743fece507c5c419640d Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 2 Dec 2013 15:23:15 -0500 Subject: [PATCH] Remove the logger basicConfig from the seo module. --- util/seo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/seo.py b/util/seo.py index 8a4514b3b..42af53502 100644 --- a/util/seo.py +++ b/util/seo.py @@ -3,8 +3,9 @@ import logging from bs4 import BeautifulSoup + logger = logging.getLogger(__name__) -logging.basicConfig(level=logging.DEBUG) + def render_snapshot(url): logger.info('Snapshotting url: %s' % url)