Skip to content

Commit

Permalink
Drop gRPC messages to debug
Browse files Browse the repository at this point in the history
There is no real reason to print them out on every start
  • Loading branch information
stuartwdouglas committed Feb 21, 2025
1 parent 5d094fa commit f601e0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private void buildGrpcServer(Vertx vertx, GrpcServerConfiguration configuration,
boolean reflectionServiceEnabled = configuration.enableReflectionService() || launchMode == LaunchMode.DEVELOPMENT;

if (reflectionServiceEnabled) {
LOGGER.info("Registering gRPC reflection service");
LOGGER.debug("Registering gRPC reflection service");
ReflectionServiceV1 reflectionServiceV1 = new ReflectionServiceV1(definitions);
ReflectionServiceV1alpha reflectionServiceV1alpha = new ReflectionServiceV1alpha(definitions);
ServerServiceDefinition serviceDefinition = ServerInterceptors.intercept(reflectionServiceV1, globalInterceptors);
Expand Down Expand Up @@ -256,7 +256,7 @@ public void handle(Void unused) {
}
}

LOGGER.info("Starting new Quarkus gRPC server (using Vert.x transport)...");
LOGGER.debug("Starting new Quarkus gRPC server (using Vert.x transport)...");
Route route = router.route().handler(ctx -> {
if (!isGrpc(ctx)) {
ctx.next();
Expand Down

0 comments on commit f601e0e

Please sign in to comment.