Source code for pylhc_submitter.utils.logging_tools

"""
Logging Tools
-------------

Tools that make the logging life easier.
"""

from __future__ import annotations

import logging
import sys


[docs] def log_setup(): """Set up a basic logger.""" logging.basicConfig( stream=sys.stdout, level=logging.INFO, format="%(levelname)7s | %(message)s | %(name)s" )