Reverse Log entries to have newest at the top
This commit is contained in:
@@ -14,7 +14,7 @@ internal object Log {
|
|||||||
|
|
||||||
fun get(): String {
|
fun get(): String {
|
||||||
val logs = HyperLog.getDeviceLogsAsStringList(false)
|
val logs = HyperLog.getDeviceLogsAsStringList(false)
|
||||||
return logs.takeLast(200).joinToString("\n")
|
return logs.takeLast(200).reversed().joinToString("\n")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun e(message: String) {
|
fun e(message: String) {
|
||||||
|
|||||||
Reference in New Issue
Block a user