blob: 4fbd6d3075637544feb8aa1e7b82acd380a52f92 [file] [log] [blame]
#!/usr/bin/env python3
#
# Copyright 2020 - The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import grpc
from google.protobuf import text_format
def pretty_print(request):
return '{} {}'.format(type(request).__name__, text_format.MessageToString(request, as_one_line=True))
class LoggingClientInterceptor(grpc.UnaryUnaryClientInterceptor):
def __init__(self, name):
self.name = name
def _intercept_call(self, continuation, client_call_details, request_or_iterator):
return continuation(client_call_details, request_or_iterator)
def intercept_unary_unary(self, continuation, client_call_details, request):
print('[host ▶▶▶▶▶ ' + self.name + '] ' + client_call_details.method + ' ' + pretty_print(request))
return self._intercept_call(continuation, client_call_details, request)