feat: Add logging for avatar blob length and first 100 characters in ChatViewModel

This commit is contained in:
k1ngsterr1
2026-01-26 22:18:30 +05:00
parent 4752954c65
commit 9ea4726a9b

View File

@@ -1877,6 +1877,7 @@ class ChatViewModel(application: Application) : AndroidViewModel(application) {
} }
Log.d(TAG, "👤 Avatar blob read successfully, length: ${avatarBlob.length}") Log.d(TAG, "👤 Avatar blob read successfully, length: ${avatarBlob.length}")
Log.d(TAG, "👤 Avatar blob first 100 chars: ${avatarBlob.take(100)}")
// Генерируем blurhash для preview (как на desktop) // Генерируем blurhash для preview (как на desktop)
val avatarBlurhash = withContext(Dispatchers.IO) { val avatarBlurhash = withContext(Dispatchers.IO) {