Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b4fdaff authored by Ricki Hirner's avatar Ricki Hirner
Browse files

Debug info: use max compression for .zip

parent 0da6b5b0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -481,6 +481,7 @@ class DebugInfoActivity: AppCompatActivity() {
                    val zipFile = File(debugInfoDir, "davx5-debug.zip")
                    Logger.log.fine("Writing debug info to ${zipFile.absolutePath}")
                    ZipOutputStream(zipFile.outputStream().buffered()).use { zip ->
                        zip.setLevel(9)
                        debugInfo.value?.let { debugInfo ->
                            zip.putNextEntry(ZipEntry("debug-info.txt"))
                            debugInfo.inputStream().use {