diff --git a/lib/bloc/list_sharee.dart b/lib/bloc/list_sharee.dart index b1767eb5..62b2f47d 100644 --- a/lib/bloc/list_sharee.dart +++ b/lib/bloc/list_sharee.dart @@ -83,7 +83,7 @@ class ListShareeBloc extends Bloc { yield ListShareeBlocLoading(ev.account, state.items); yield ListShareeBlocSuccess(ev.account, await _query(ev)); } catch (e, stackTrace) { - _log.severe("[_onEventQuery] Exception while request", e, stackTrace); + _log.shout("[_onEventQuery] Exception while request", e, stackTrace); yield ListShareeBlocFailure(ev.account, state.items, e); } }