]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 19 Nov 2023 15:43:21 +0000 (16:43 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 19 Nov 2023 15:43:21 +0000 (16:43 +0100)
- added debug lines (each loop should start with a debug line)

fba/commands.py

index 44ffb30a38b7e84329e93ebf3df9c3aa28d40362..e10ab328ff45844887615409ef1b39b8ec4d2537 100644 (file)
@@ -1040,6 +1040,7 @@ def fetch_oliphant(args: argparse.Namespace) -> int:
     logger.debug("Downloading %d files ...", len(blocklists.oliphant_blocklists))
     for block in blocklists.oliphant_blocklists:
         # Is domain given and not equal blocker?
+        logger.debug("block[blocker]='%s',block[csv_url]='%s'", block["blocker"], block["csv_url"])
         if isinstance(args.domain, str) and args.domain != block["blocker"]:
             logger.debug("Skipping blocker='%s', not matching args.domain='%s'", block["blocker"], args.domain)
             continue