diff --git a/lib/utils/logger.dart b/lib/utils/logger.dart index 9fb68ae7..38719296 100644 --- a/lib/utils/logger.dart +++ b/lib/utils/logger.dart @@ -56,9 +56,11 @@ mixin LoggerMixin { /// Exception void handle(AppException exception) { - talker - ..error('$runtimeType: handle error:') - ..handle(exception, exception.stackTrace, exception.message); + talker.handle( + exception, + exception.stackTrace, + '$runtimeType: handle error: ', + ); } /// Handle [exception] then run [callback].