Skip to content

Commit

Permalink
Rename logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-pratik-k committed Jan 21, 2025
1 parent ecae6e8 commit 80286ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/lib/ui/flow/clean_up/clean_up_state_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CleanUpStateNotifier extends StateNotifier<CleanUpState> {
} catch (e, s) {
state = state.copyWith(loading: false, error: e);
_logger.e(
"BinStateNotifier: Error occur while loading bin items",
"CleanUpStateNotifier: Error occur while loading bin items",
error: e,
stackTrace: s,
);
Expand Down Expand Up @@ -79,7 +79,7 @@ class CleanUpStateNotifier extends StateNotifier<CleanUpState> {
} catch (e, s) {
state = state.copyWith(deleteSelectedLoading: [], actionError: e);
_logger.e(
"BinStateNotifier: Error occur while deleting selected bin items",
"CleanUpStateNotifier: Error occur while deleting selected bin items",
error: e,
stackTrace: s,
);
Expand All @@ -103,7 +103,7 @@ class CleanUpStateNotifier extends StateNotifier<CleanUpState> {
} catch (e, s) {
state = state.copyWith(deleteAllLoading: false, actionError: e);
_logger.e(
"BinStateNotifier: Error occur while deleting all bin items",
"CleanUpStateNotifier: Error occur while deleting all bin items",
error: e,
stackTrace: s,
);
Expand Down

0 comments on commit 80286ef

Please sign in to comment.