Skip to content

Commit

Permalink
update log level
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Apr 2, 2024
1 parent 6bc061f commit 6f00a7c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions compose/cryostat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
io.cryostat.jmxPort: "0"
io.cryostat.jmxUrl: "service:jmx:rmi:///jndi/rmi://localhost:0/jmxrmi"
environment:
QUARKUS_LOG_LEVEL: TRACE
QUARKUS_HTTP_HOST: "cryostat"
QUARKUS_HTTP_PORT: ${CRYOSTAT_HTTP_PORT}
QUARKUS_HIBERNATE_ORM_LOG_SQL: "true"
Expand Down
1 change: 0 additions & 1 deletion src/main/java/io/cryostat/ws/MessagingServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ void start(@Observes StartupEvent evt) {
notification.message());
try {
var json = mapper.writeValueAsString(map);
logger.infov("Broadcasting: {0}", map);
logger.debugv("Broadcasting: {0}", json);
sessions.forEach(s -> s.getAsyncRemote().sendText(json));
} catch (JsonProcessingException e) {
Expand Down

0 comments on commit 6f00a7c

Please sign in to comment.