From e6b4d170274795d8123e705e25c114e8def2197e Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 12 Jul 2022 11:55:31 +0200 Subject: [PATCH] Using error instead of warning for failed apk download --- mvt/android/cmd_download_apks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvt/android/cmd_download_apks.py b/mvt/android/cmd_download_apks.py index c467639..64e3eb8 100644 --- a/mvt/android/cmd_download_apks.py +++ b/mvt/android/cmd_download_apks.py @@ -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: