mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-14 03:36:01 +00:00
6 lines
120 B
Python
6 lines
120 B
Python
import logging
|
|
import sys
|
|
|
|
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
|
|
LOG = logging.getLogger(__name__)
|