Skip to content

Commit

Permalink
Remove unnecessary error throwing while managing datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Mar 13, 2024
1 parent be51577 commit 8d30086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/app/shared/date/date.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class UiDate {
.toLocal(),
);
}
} catch (e, s) {
getLogger('date').e('e: $e, s: $s');
} catch (e) {
//getLogger('date').e('e: $e, s: $s');
return '';
}
}
Expand Down

0 comments on commit 8d30086

Please sign in to comment.