Skip to content

Commit

Permalink
fix: use HH:mm:ss format for message timestamps in LSP view
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon authored and angelozerr committed Sep 27, 2023
1 parent 58433c5 commit 28559b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public TracingMessageConsumer() {
this.sentRequests = new ConcurrentHashMap<>();
this.receivedRequests = new ConcurrentHashMap<>();
this.clock = Clock.systemDefaultZone();
this.dateTimeFormatter = DateTimeFormatter.ofPattern("KK:mm:ss a").withZone(clock.getZone());
this.dateTimeFormatter = DateTimeFormatter.ofPattern("HH:mm:ss").withZone(clock.getZone());
}

/**
Expand Down

0 comments on commit 28559b5

Please sign in to comment.