Add zoned "Current time" to debug info and include year & timezone in logcat output (#1672)
* Add zoned date & time to debug info & logs This should help distinguish log entries that happened recently and may be related to crashes from older entries that occurred before now. * Change logcat date and time output format After some discussion, it was decided to adjust the logcat date and time display to include the year and the timezone in the logcat output. This results in a line start like this: `2025-01-27 18:37:46.662 +0100` which follows the following DateTimeFormatter pattern: `yyyy-MM-dd HH:mm:ss.SSS Z` * Add CHANGELOG.md entry (cherry picked from commit 503d0be66772c37e08e69e5d022475245b706fd1)
This commit is contained in:
parent
1af7d9ec72
commit
723e19f399
2 changed files with 10 additions and 1 deletions
|
|
@ -15,6 +15,12 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
|
||||||
- Add option to always decode long strip images with SSIV
|
- Add option to always decode long strip images with SSIV
|
||||||
- Added option to enable incognito per extension ([@sdaqo](https://github.com/sdaqo), [@AntsyLich](https://github.com/AntsyLich)) ([#157](https://github.com/mihonapp/mihon/pull/157))
|
- Added option to enable incognito per extension ([@sdaqo](https://github.com/sdaqo), [@AntsyLich](https://github.com/AntsyLich)) ([#157](https://github.com/mihonapp/mihon/pull/157))
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fix MAL `main_picture` nullability breaking search if a result doesn't have a cover set ([@MajorTanya](https://github.com/MajorTanya)) ([#1618](https://github.com/mihonapp/mihon/pull/1618))
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Add zoned "Current time" to debug info and include year & timezone in logcat output ([@MajorTanya](https://github.com/MajorTanya)) ([#1672](https://github.com/mihonapp/mihon/pull/1672))
|
||||||
|
|
||||||
## [v0.17.1] - 2024-12-06
|
## [v0.17.1] - 2024-12-06
|
||||||
### Changed
|
### Changed
|
||||||
- Bump default user agent ([@AntsyLich](https://github.com/AntsyLich)) ([`76dcf90`](https://github.com/mihonapp/mihon/commit/76dcf903403d565056f44c66d965c1ea8affffc3))
|
- Bump default user agent ([@AntsyLich](https://github.com/AntsyLich)) ([`76dcf90`](https://github.com/mihonapp/mihon/commit/76dcf903403d565056f44c66d965c1ea8affffc3))
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,8 @@ import tachiyomi.core.common.util.lang.withNonCancellableContext
|
||||||
import tachiyomi.core.common.util.lang.withUIContext
|
import tachiyomi.core.common.util.lang.withUIContext
|
||||||
import uy.kohesive.injekt.Injekt
|
import uy.kohesive.injekt.Injekt
|
||||||
import uy.kohesive.injekt.api.get
|
import uy.kohesive.injekt.api.get
|
||||||
|
import java.time.OffsetDateTime
|
||||||
|
import java.time.ZoneId
|
||||||
|
|
||||||
class CrashLogUtil(
|
class CrashLogUtil(
|
||||||
private val context: Context,
|
private val context: Context,
|
||||||
|
|
@ -27,7 +29,7 @@ class CrashLogUtil(
|
||||||
getExtensionsInfo()?.let { file.appendText("$it\n\n") }
|
getExtensionsInfo()?.let { file.appendText("$it\n\n") }
|
||||||
exception?.let { file.appendText("$it\n\n") }
|
exception?.let { file.appendText("$it\n\n") }
|
||||||
|
|
||||||
Runtime.getRuntime().exec("logcat *:E -d -f ${file.absolutePath}").waitFor()
|
Runtime.getRuntime().exec("logcat *:E -d -v year -v zone -f ${file.absolutePath}").waitFor()
|
||||||
|
|
||||||
val uri = file.getUriCompat(context)
|
val uri = file.getUriCompat(context)
|
||||||
context.startActivity(uri.toShareIntent(context, "text/plain"))
|
context.startActivity(uri.toShareIntent(context, "text/plain"))
|
||||||
|
|
@ -46,6 +48,7 @@ class CrashLogUtil(
|
||||||
Device name: ${Build.DEVICE} (${Build.PRODUCT})
|
Device name: ${Build.DEVICE} (${Build.PRODUCT})
|
||||||
Device model: ${Build.MODEL}
|
Device model: ${Build.MODEL}
|
||||||
WebView: ${WebViewUtil.getVersion(context)}
|
WebView: ${WebViewUtil.getVersion(context)}
|
||||||
|
Current time: ${OffsetDateTime.now(ZoneId.systemDefault())}
|
||||||
""".trimIndent()
|
""".trimIndent()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue