Using error instead of warning for failed apk download

This commit is contained in:
Nex
2022-07-12 11:55:31 +02:00
parent f55ac36189
commit e6b4d17027
+2 -2
View File
@@ -78,8 +78,8 @@ class DownloadAPKs(AndroidExtraction):
try:
self._adb_download(remote_path, local_path)
except InsufficientPrivileges:
log.warn("Unable to pull package file from %s: insufficient privileges, it might be a system app",
remote_path)
log.error("Unable to pull package file from %s: insufficient privileges, it might be a system app",
remote_path)
self._adb_reconnect()
return None
except Exception as e: