From 57941aacec8c9f605ee57f4dacfbfbc7bb6556f0 Mon Sep 17 00:00:00 2001 From: Paul RASCLE Date: Wed, 27 Jun 2018 17:06:44 +0200 Subject: [PATCH] remove logger DEBUG mode on PortManager.py --- bin/PortManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/PortManager.py b/bin/PortManager.py index 345af4e41..6f3d7b29e 100644 --- a/bin/PortManager.py +++ b/bin/PortManager.py @@ -35,8 +35,8 @@ __PORT_MAX_NUMBER = 2910 import logging def createLogger(): logger = logging.getLogger(__name__) - logger.setLevel(logging.DEBUG) - #logger.setLevel(logging.INFO) + #logger.setLevel(logging.DEBUG) + logger.setLevel(logging.INFO) ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) formatter = logging.Formatter("%(levelname)s:%(threadName)s:%(pathname)s[%(lineno)s]%(message)s") -- 2.39.2