From 2207bf47e887f1b79e124bd4f0221a43b2da2242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Herje?= Date: Fri, 15 Mar 2024 09:04:02 +0100 Subject: [PATCH] Remove logging from `instance.py` --- GrpcInterface/Python/rips/instance.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/GrpcInterface/Python/rips/instance.py b/GrpcInterface/Python/rips/instance.py index 1f6f7b0f70..29a96fd614 100644 --- a/GrpcInterface/Python/rips/instance.py +++ b/GrpcInterface/Python/rips/instance.py @@ -8,7 +8,6 @@ from __future__ import annotations import os import socket -import logging import time import tempfile import signal @@ -216,7 +215,6 @@ def __init__(self, port: int = 50051, launched: bool = False) -> None: Args: port(int): port number """ - logging.basicConfig() self.location: str = "localhost:" + str(port) self.channel = grpc.insecure_channel(