Tweak logs

This commit is contained in:
Ming Ming 2021-08-21 17:59:26 +08:00
parent 4a32f49a11
commit e4f75b585a

View file

@ -83,7 +83,7 @@ class ListShareeBloc extends Bloc<ListShareeBlocEvent, ListShareeBlocState> {
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);
}
}