Change restore error log extension to txt

This commit is contained in:
arkon 2020-04-19 15:13:02 -04:00
parent a5d9fb518a
commit bb064a1ba7

View File

@ -273,7 +273,7 @@ class BackupRestoreService : Service() {
private fun writeErrorLog(): File {
try {
if (errors.isNotEmpty()) {
val destFile = File(externalCacheDir, "tachiyomi_restore.log")
val destFile = File(externalCacheDir, "tachiyomi_restore.txt")
val sdf = SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS", Locale.getDefault())
destFile.bufferedWriter().use { out ->