From 8f7bd6b33a3701e06e34d0a573d1e3bfa4457b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 26 Nov 2018 15:49:39 +0100 Subject: [PATCH] chg: Change default logging of db_insert, and ssfetcher to INFO --- bin/dbinsert.py | 2 +- bin/ssfetcher.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dbinsert.py b/bin/dbinsert.py index 656671e..fd101a5 100755 --- a/bin/dbinsert.py +++ b/bin/dbinsert.py @@ -11,7 +11,7 @@ logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', class DBInsertManager(AbstractManager): - def __init__(self, loglevel: int=logging.DEBUG): + def __init__(self, loglevel: int=logging.INFO): super().__init__(loglevel) self.dbinsert = DatabaseInsert(loglevel) diff --git a/bin/ssfetcher.py b/bin/ssfetcher.py index c5a657d..2930337 100755 --- a/bin/ssfetcher.py +++ b/bin/ssfetcher.py @@ -17,7 +17,7 @@ logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', class ShadowServerManager(AbstractManager): - def __init__(self, config_dir: Path=None, storage_directory: Path=None, loglevel: int=logging.DEBUG): + def __init__(self, config_dir: Path=None, storage_directory: Path=None, loglevel: int=logging.INFO): super().__init__(loglevel) self.config = True if not config_dir: