Skip to content

Commit

Permalink
fixup! fix(tls): return empty list if custom truststore dir is not ac…
Browse files Browse the repository at this point in the history
…cessible (cryostatio#419)
  • Loading branch information
andrewazores committed Apr 30, 2024
1 parent 1d06e0e commit 6f57034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/cryostat/ws/MessagingServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void broadcast(Notification notification) {
logger.errorv(e, "Unable to serialize message to JSON: {0}", notification);
return;
}
logger.infov("Broadcasting: {0}", json);
logger.debugv("Broadcasting: {0}", json);
sessions.forEach(
s ->
s.getAsyncRemote()
Expand Down

0 comments on commit 6f57034

Please sign in to comment.