修复日志输出问题

This commit is contained in:
Jing Ling
2020-08-15 18:20:15 +08:00
parent d9714c039b
commit 5d7bdbbcea
+2 -1
View File
@@ -119,7 +119,8 @@ def filter_url(domain, url, black_name):
try: try:
raw_url = parse.urlparse(url) raw_url = parse.urlparse(url)
except Exception as e: # 解析失败则跳过该URL except Exception as e: # 解析失败则跳过该URL
logger.log('DEBUG', url, e.args) logger.log('DEBUG', url)
logger.log('DEBUG', e.args)
return True return True
scheme = raw_url.scheme.lower() scheme = raw_url.scheme.lower()
if not scheme: if not scheme: