improve logging
This commit is contained in:
@@ -1,13 +1,22 @@
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
sys.path.insert(0, "../src")
|
sys.path.insert(0, "../src")
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
from cache import * # noqa: F401 — must be before adapter imports
|
from cache import * # noqa: F401 — must be before adapter imports
|
||||||
|
|
||||||
from adapters import SCRAPERS
|
from adapters import SCRAPERS
|
||||||
|
|
||||||
|
logging.basicConfig(
|
||||||
|
stream=sys.stdout,
|
||||||
|
level=logging.DEBUG,
|
||||||
|
format="%(asctime)s %(levelname)s %(name)s — %(message)s",
|
||||||
|
datefmt="%Y-%m-%dT%H:%M:%S",
|
||||||
|
)
|
||||||
|
|
||||||
# --- change this to test a different adapter ---
|
# --- change this to test a different adapter ---
|
||||||
ADAPTER = SCRAPERS['ooms']
|
ADAPTER = SCRAPERS['dewittegarantiemakelaars']
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print(f"Testing adapter: {ADAPTER.__name__}")
|
print(f"Testing adapter: {ADAPTER.__name__}")
|
||||||
|
|||||||
Reference in New Issue
Block a user