Skip to content

Commit

Permalink
Remove extranous exception stacktrace printing
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Jul 14, 2023
1 parent 3a78f04 commit 591c289
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,9 @@ public static String nonUTCFormat(String s) {
} else {
return s;
}
} catch (DateTimeParseException e) {
e.printStackTrace();
} catch (DateTimeParseException ignored) {
// disable log flooding
// e.printStackTrace();
}

if (parsed != null) {
Expand Down

0 comments on commit 591c289

Please sign in to comment.