Skip to content

Commit 96dfd0a

Browse files
committed
fix: apk installation error log
1 parent 0754698 commit 96dfd0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/common/src/main/java/com/itsaky/androidide/utils/ApkInstaller.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ object ApkInstaller {
111111
}
112112
} catch (io: IOException) {
113113
session?.abandon()
114-
log.error("Package installation failed", io)
114+
log.error("Package installation failed. {}", io)
115115
} catch (runtime: RuntimeException) {
116116
session?.abandon()
117-
log.error("Package installation failed", runtime)
117+
log.error("Package installation failed. {}", runtime)
118118
}
119119
}
120120

0 commit comments

Comments
 (0)