Skip to content

Commit 6eb56c9

Browse files
authored
[RSDK-2948] Set grpc request logs to debug (#276)
1 parent f3fbb9f commit 6eb56c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ format:
1616

1717
_buf: clean
1818
rm -rf src/viam/gen
19-
buf generate buf.build/viamrobotics/api --path common,component,robot,service,module,app/v1,tagger
19+
buf generate buf.build/viamrobotics/api
2020
buf generate buf.build/viamrobotics/goutils
2121
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/api
2222
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/goutils

src/viam/rpc/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def _grpc_event_handler(self, event: RecvRequest):
6161
host = address[0]
6262
port = address[1]
6363
msg = f"[gRPC Request] {host or 'xxxx'}:{port or 'xxxx'} - {event.method_name}"
64-
LOGGER.info(msg)
64+
LOGGER.debug(msg)
6565

6666
async def serve(
6767
self,

0 commit comments

Comments
 (0)