From ce0b6d6c053c020e47bdd0b63dcad3b3c263040a Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Mon, 18 Nov 2024 01:26:45 +0800 Subject: [PATCH] Fix build error --- app/lib/entity/exif.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/lib/entity/exif.dart b/app/lib/entity/exif.dart index fda96a9b..f29368dc 100644 --- a/app/lib/entity/exif.dart +++ b/app/lib/entity/exif.dart @@ -160,7 +160,7 @@ class Exif with EquatableMixin { int.parse(str.substring(pos + 1)), ); } catch (e, stackTrace) { - log.shout( + _$ExifNpLog.log.shout( "[_tryParseRationalString] Failed to parse rational string: $str", e, stackTrace); @@ -175,7 +175,9 @@ class Exif with EquatableMixin { try { return int.parse(str); } catch (e, stackTrace) { - log.shout("[_tryParseIntString] Failed to parse int string: $str", e, + _$ExifNpLog.log.shout( + "[_tryParseIntString] Failed to parse int string: $str", + e, stackTrace); return null; }