chg: Change default logging of db_insert, and ssfetcher to INFO

pull/12/head
Raphaël Vinot 2018-11-26 15:49:39 +01:00
parent 367f2f8421
commit 8f7bd6b33a
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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: