From: Paul RASCLE Date: Wed, 27 Jun 2018 15:06:44 +0000 (+0200) Subject: remove logger DEBUG mode on PortManager.py X-Git-Tag: SHAPER_V9_1_0RC1~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=57941aacec8c9f605ee57f4dacfbfbc7bb6556f0;p=modules%2Fkernel.git remove logger DEBUG mode on PortManager.py --- 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")