diff --git a/bin/archiver.py b/bin/archiver.py index 8b8584b..143ccc3 100755 --- a/bin/archiver.py +++ b/bin/archiver.py @@ -19,7 +19,7 @@ from bgpranking.helpers import get_modules, get_data_dir logger = logging.getLogger('Archiver') logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class DeepArchive(): diff --git a/bin/asn_descriptions.py b/bin/asn_descriptions.py index 296e588..4d72574 100755 --- a/bin/asn_descriptions.py +++ b/bin/asn_descriptions.py @@ -12,7 +12,7 @@ from bgpranking.default import get_socket_path, safe_create_dir, AbstractManager from bgpranking.helpers import get_data_dir logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class ASNDescriptions(AbstractManager): diff --git a/bin/dbinsert.py b/bin/dbinsert.py index a2759ef..9b6778f 100755 --- a/bin/dbinsert.py +++ b/bin/dbinsert.py @@ -13,7 +13,7 @@ from bgpranking.helpers import get_ipasn, sanity_check_ipasn logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class DBInsertManager(AbstractManager): diff --git a/bin/fetcher.py b/bin/fetcher.py index 6816f88..6c2d664 100755 --- a/bin/fetcher.py +++ b/bin/fetcher.py @@ -19,7 +19,7 @@ from bgpranking.helpers import get_modules, get_data_dir, get_modules_dir logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class Fetcher(): diff --git a/bin/manual_ranking.py b/bin/manual_ranking.py index a7f82b7..59a5816 100644 --- a/bin/manual_ranking.py +++ b/bin/manual_ranking.py @@ -10,7 +10,7 @@ from bgpranking.helpers import load_all_modules_configs from .ranking import Ranking logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.DEBUG, datefmt='%I:%M:%S') + level=logging.INFO) if __name__ == '__main__': diff --git a/bin/parser.py b/bin/parser.py index 438229c..a2c3757 100755 --- a/bin/parser.py +++ b/bin/parser.py @@ -21,7 +21,7 @@ from bgpranking.helpers import get_modules, get_data_dir, get_modules_dir logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class RawFilesParser(): diff --git a/bin/ranking.py b/bin/ranking.py index ccf2dbd..c52a125 100755 --- a/bin/ranking.py +++ b/bin/ranking.py @@ -14,7 +14,7 @@ from bgpranking.default import AbstractManager, get_config from bgpranking.helpers import get_ipasn, sanity_check_ipasn, load_all_modules_configs logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) class Ranking(AbstractManager): diff --git a/bin/sanitizer.py b/bin/sanitizer.py index debce50..cd8bbb5 100755 --- a/bin/sanitizer.py +++ b/bin/sanitizer.py @@ -16,7 +16,7 @@ from bgpranking.default import AbstractManager, get_socket_path from bgpranking.helpers import get_ipasn, sanity_check_ipasn logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.WARNING, datefmt='%I:%M:%S') + level=logging.INFO) class Sanitizer(AbstractManager): diff --git a/bin/ssfetcher.py b/bin/ssfetcher.py index b260bed..f077e01 100755 --- a/bin/ssfetcher.py +++ b/bin/ssfetcher.py @@ -19,7 +19,7 @@ from bgpranking.helpers import get_data_dir, get_modules_dir logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s', - level=logging.INFO, datefmt='%I:%M:%S') + level=logging.INFO) Dates = TypeVar('Dates', datetime, date, str)