Skip to content

Commit

Permalink
fix: apk installation error log
Browse files Browse the repository at this point in the history
  • Loading branch information
teixeira0x committed Dec 11, 2024
1 parent 0754698 commit 96dfd0a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ object ApkInstaller {
}
} catch (io: IOException) {
session?.abandon()
log.error("Package installation failed", io)
log.error("Package installation failed. {}", io)
} catch (runtime: RuntimeException) {
session?.abandon()
log.error("Package installation failed", runtime)
log.error("Package installation failed. {}", runtime)
}
}

Expand Down

0 comments on commit 96dfd0a

Please sign in to comment.