Use error() for URL parse errors

This commit is contained in:
Rafael Moraes
2026-04-24 12:08:24 -03:00
parent 84c21c0013
commit fd3b6216c9
+1 -1
View File
@@ -293,7 +293,7 @@ async def main(config: CliConfig):
download_item.final_path,
)
except GamdlInterfaceUrlParseError as e:
url_log.exception(f"{e}")
url_log.error(f"{e}")
continue
except Exception as e:
url_log.exception(f'Error processing "{url}": {e}')