Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ format:

_buf: clean
rm -rf src/viam/gen
buf generate buf.build/viamrobotics/api --path common,component,robot,service,module,app/v1,tagger
buf generate buf.build/viamrobotics/api
buf generate buf.build/viamrobotics/goutils
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/api
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/goutils
Expand Down
2 changes: 1 addition & 1 deletion src/viam/rpc/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async def _grpc_event_handler(self, event: RecvRequest):
host = address[0]
port = address[1]
msg = f"[gRPC Request] {host or 'xxxx'}:{port or 'xxxx'} - {event.method_name}"
LOGGER.info(msg)
LOGGER.debug(msg)

async def serve(
self,
Expand Down