Remove the logger basicConfig from the seo module.
This commit is contained in:
parent
03198210c3
commit
354a03c499
1 changed files with 2 additions and 1 deletions
|
@ -3,8 +3,9 @@ import logging
|
||||||
|
|
||||||
from bs4 import BeautifulSoup
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
|
||||||
|
|
||||||
def render_snapshot(url):
|
def render_snapshot(url):
|
||||||
logger.info('Snapshotting url: %s' % url)
|
logger.info('Snapshotting url: %s' % url)
|
||||||
|
|
Reference in a new issue