Coverage for rta_reconstruction/utils/logging.py: 82%
22 statements
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-02 09:59 +0000
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-02 09:59 +0000
1import logging
2import sys
3from enum import Enum
5# Mapping between logging levels exposed to users, and logging levels in software
6# Users level should eventually follow ACADA AE Logging ICD https://redmine.cta-observatory.org/dmsf/files/14915/view
7LOGGING_LEVELS_DICT = {
8 "DEBUG": logging.DEBUG,
9 "INFO": logging.INFO,
10 "WARNING": logging.WARNING,
11 "ERROR": logging.ERROR,
12 "CRITICAL": logging.CRITICAL,
13}
15# Enum class of logging levels, to constraint the variable type in configuration json schema.
16LOGGING_LEVELS = Enum("LOGGING_LEVELS", {v: v for v in LOGGING_LEVELS_DICT.keys()})
19def log_uncaught_exceptions():
20 """Makes all uncaught exception to be logged by the default logger.
22 Keyboard exceptions and children classes are not logged so one can kill the program with ctr+C.
23 """
25 def handle_exception(exc_type, exc_value, exc_traceback):
26 if not issubclass(exc_type, KeyboardInterrupt):
27 logging.critical("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback))
29 sys.__excepthook__(exc_type, exc_value, exc_traceback)
30 return
32 sys.excepthook = handle_exception
35def init_logging(log_level="DEBUG", log_filename="dl1_to_dl2.log"):
36 """(Re-)initialize all loggers"""
38 logging.captureWarnings(True) # log all warnings from the warnings module.
39 log_uncaught_exceptions() # log all uncaught exceptions as well
41 logging_format = "%(asctime)s - %(levelname)s - SAG DL1 to DL2 - %(filename)s:%(lineno)s - %(message)s"
42 logging_level = LOGGING_LEVELS(log_level)
43 # This is deactivated as it makes logging call randomly deadlock in jenkins CI machine
44 # TODO: issue
45 # output to stderr
46 # handlers = [logging.StreamHandler()] # output to stderr
47 handlers = []
48 if log_filename: # and also output to file if asked
49 handlers.append(logging.FileHandler(log_filename))
50 logging.basicConfig(
51 level=logging_level.name,
52 format=logging_format,
53 handlers=handlers,
54 force=True,
55 )
57 logging.info("Logging configured - start logging")