From: garciadeblas Date: Tue, 17 Sep 2024 09:38:51 +0000 (+0200) Subject: Decrease verbosity in LCM logs associated to kafka_read X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F71%2F14571%2F1;p=osm%2FLCM.git Decrease verbosity in LCM logs associated to kafka_read Change-Id: I8f4124adfd8aaf9be936b00234dfb2a89b517ead Signed-off-by: garciadeblas --- diff --git a/osm_lcm/lcm.py b/osm_lcm/lcm.py index 5982250..ba3ea7b 100644 --- a/osm_lcm/lcm.py +++ b/osm_lcm/lcm.py @@ -1083,11 +1083,6 @@ class Lcm: ) self.consecutive_errors = 0 self.first_start = True - self.logger.info( - "Consecutive errors: {} first start: {}".format( - self.consecutive_errors, self.first_start - ) - ) while self.consecutive_errors < 10: try: topics = ( @@ -1109,7 +1104,7 @@ class Lcm: "oka", "ksu", ) - self.logger.info( + self.logger.debug( "Consecutive errors: {} first start: {}".format( self.consecutive_errors, self.first_start )