Adds an error log for the new on account view model processor

This commit is contained in:
Vitor Pamplona
2025-04-25 17:03:26 -04:00
parent b51e5f4383
commit 539d20b397
@@ -20,6 +20,7 @@
*/
package com.vitorpamplona.amethyst.ui.screen.loggedIn
import android.util.Log
import com.vitorpamplona.amethyst.Amethyst
import com.vitorpamplona.amethyst.model.Account
import com.vitorpamplona.amethyst.model.LocalCache
@@ -112,6 +113,7 @@ class PrecacheNewNotesProcessor(
}
} catch (e: Exception) {
if (e is CancellationException) throw e
Log.e("PrecacheNewNotesProcessor", "This shouldn't happen", e)
}
}
}