in the QueueLister launcher add "respect_handler_level=True" so it respects the previous set log levels per handler Also split all logging tests into their own file
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
"""
|
|
Log logging_handling.log testing
|
|
"""
|
|
|
|
# import atexit
|
|
from pathlib import Path
|
|
from multiprocessing import Queue
|
|
# this is for testing only
|
|
from corelibs.logging_handling.log import Log
|
|
|
|
|
|
def main():
|
|
"""
|
|
Log testing
|
|
"""
|
|
script_path: Path = Path(__file__).resolve().parent
|
|
|
|
log_queue: 'Queue[str]' = Queue()
|
|
log_q = Log(
|
|
log_path=script_path.joinpath('log', 'test_queue.log'),
|
|
log_name="Test Log",
|
|
log_settings={
|
|
"log_level_console": 'WARNING',
|
|
"log_level_file": 'ERROR',
|
|
"log_queue": log_queue
|
|
# "console_color_output_enabled": False,
|
|
}
|
|
)
|
|
|
|
log_q.logger.debug('[QUEUE] Debug test: %s', log_q.logger.name)
|
|
log_q.logger.info('[QUEUE] Info test: %s', log_q.logger.name)
|
|
log_q.logger.warning('[QUEUE] Warning test: %s', log_q.logger.name)
|
|
log_q.logger.error('[QUEUE] Error test: %s', log_q.logger.name)
|
|
log_q.logger.critical('[QUEUE] Critical test: %s', log_q.logger.name)
|
|
log_q.exception('[QUEUE] Exception test: %s', log_q.logger.name)
|
|
log_q.stop_listener()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|
|
# __END__
|