Skip to content

Commit

Permalink
Sync error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Dyatlov committed Jul 4, 2024
1 parent 4671177 commit e8b4a80
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ class AndroidAppInstaller(
logger.info { "Uninstalled $it - $result" }
installedApps[device.serialNumber]?.remove(it)
} else {
logger.error { result }
logger.error { "Error while uninstalling $it on ${device.serialNumber} : $result" }
}
} catch (ignored: InstallException) {
} catch (ignored: Throwable) {
logger.error(ignored) { "Error while uninstalling $it on ${device.serialNumber}" }
}
}
Expand Down

0 comments on commit e8b4a80

Please sign in to comment.