Constant stream of -> Sending instruction: EVENT_PROCESSOR_INFO

Hi, I’m new to both JVM and Axon, so apologies if this is a silly question! I’m using AxonServer SE, configured Axon to run on ktor, and using an in memory H2 DB. I am getting this constant stream of the following:

2021-04-30 11:56:42.514 [axon-connector-98971@hamilcar.attlocal.net-1] DEBUG i.a.a.c.impl.ControlChannelImpl - Sending instruction: EVENT_PROCESSOR_INFO 
2021-04-30 11:56:42.514 [grpc-nio-worker-ELG-5-3] DEBUG io.grpc.netty.NettyClientHandler - [id: 0x98556b1e, L:/127.0.0.1:58958 - R:localhost/127.0.0.1:8124] OUTBOUND DATA: streamId=5 padding=0 endStream=false length=90 bytes=000000005512530a15696f2e736964656361722e61786f6e2e71756572791208547261636b696e67180120013206100120012806422430386232643331362d61...
2021-04-30 11:56:42.515 [grpc-nio-worker-ELG-5-3] DEBUG io.grpc.netty.NettyClientHandler - [id: 0x98556b1e, L:/127.0.0.1:58958 - R:localhost/127.0.0.1:8124] INBOUND PING: ack=false bytes=1234
2021-04-30 11:56:42.515 [grpc-nio-worker-ELG-5-3] DEBUG io.grpc.netty.NettyClientHandler - [id: 0x98556b1e, L:/127.0.0.1:58958 - R:localhost/127.0.0.1:8124] OUTBOUND PING: ack=true bytes=1234

My commands, queries, and projections seem to work fine. It just prints this constant stream of messages. I’m just curious what this is and how to stop it. Thanks!

Hi,
looks fine to me, they are just verbose DEBUG message from grpc. I will silent them configuring logging in the proper way. Maybe even raising up to WARN the logging for io.grpc.netty package.

Hi, thanks so much for your reply! That definitely helped.