updates to try and clean up info logging, moved some statements to debug

This commit is contained in:
bharnden 2019-09-11 15:05:05 -07:00
parent 8a39d070b8
commit 0d5692e7e8
14 changed files with 37 additions and 37 deletions

View file

@ -175,7 +175,7 @@ class CoreGrpcServer(core_pb2_grpc.CoreApiServicer):
context.abort(grpc.StatusCode.CANCELLED, "server stopping")
def listen(self, address):
logging.info("starting grpc api: %s", address)
logging.info("CORE gRPC API listening on: %s", address)
self.server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
core_pb2_grpc.add_CoreApiServicer_to_server(self, self.server)
self.server.add_insecure_port(address)