From 4efbf36d821149986d2b487be7447c2b8a008364 Mon Sep 17 00:00:00 2001 From: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> Date: Mon, 4 Aug 2025 11:37:50 +0530 Subject: [PATCH] chore: log asset name on hash failures (#20608) --- mobile/lib/domain/services/hash.service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/domain/services/hash.service.dart b/mobile/lib/domain/services/hash.service.dart index 2a07320906..36a4b9efba 100644 --- a/mobile/lib/domain/services/hash.service.dart +++ b/mobile/lib/domain/services/hash.service.dart @@ -96,7 +96,7 @@ class HashService { if (hash?.length == 20) { hashed.add(asset.copyWith(checksum: base64.encode(hash!))); } else { - _log.warning("Failed to hash file for ${asset.id}"); + _log.warning("Failed to hash file for ${asset.id}: ${asset.name} created at ${asset.createdAt}"); } }