Skip to content

Commit

Permalink
Even more logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukedegruchy committed Nov 13, 2023
1 parent d5b2b65 commit 5921f28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public OffsetDateTime getNormalized(Precision precision, ZoneOffset nullableZone
final ZoneId zoneId = timeZoneDefault.toZoneId();
final ZonedDateTime zonedDateTime = dateTime.atZoneSameInstant(zoneId);
final OffsetDateTime offsetDateTime = zonedDateTime.toOffsetDateTime();
logger.warn("zoneId: {}, zonedDateTime: {}, offsetDateTime: {}", zoneId, zonedDateTime, offsetDateTime);
logger.warn("zoneId: {}, dateTime: {}, dateTime.offset: {}, zonedDateTime: {}, offsetDateTime: {}", zoneId, dateTime, dateTime.getOffset(), zonedDateTime, offsetDateTime);

return dateTime.atZoneSameInstant(TimeZone.getDefault().toZoneId()).toOffsetDateTime();
}
Expand Down

0 comments on commit 5921f28

Please sign in to comment.