Add log when get content length for url failed.

This commit is contained in:
Ovear 2023-01-09 03:44:16 +08:00
parent 976ed6f12c
commit a43882456d

View file

@ -176,7 +176,8 @@ def get_content_length(url):
return 0 return 0
content_length = r.headers.get("Content-Length", 0) content_length = r.headers.get("Content-Length", 0)
return int(content_length) return int(content_length)
except Exception: except Exception as e:
print(f'{config.ERROR_COLOR}Can not get content length for {url}...{config.END}')
pass pass
return 0 return 0