Skip to content

Commit

Permalink
chore(logs): fix broken logs format
Browse files Browse the repository at this point in the history
  • Loading branch information
tthvo committed Mar 27, 2024
1 parent 36ec3e8 commit 8fe2722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/cryostat/discovery/KubeApiDiscovery.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void onStart(@Observes StartupEvent evt) {
universe.persist();
}

logger.infov("Starting %s client", REALM);
logger.infov("Starting {} client", REALM);

safeGetInformers(); // trigger lazy init
}
Expand All @@ -143,7 +143,7 @@ void onStop(@Observes ShutdownEvent evt) {
return;
}

logger.infov("Shutting down %s client", REALM);
logger.infov("Shutting down {} client", REALM);
}

boolean enabled() {
Expand Down

0 comments on commit 8fe2722

Please sign in to comment.