Source code for compass.warn

"""Custom Warnings for COMPASS"""

import logging


logger = logging.getLogger("compass")


[docs] class COMPASSWarning(UserWarning): """Generic COMPASS Warning""" def __init__(self, *args, **kwargs): """Init exception and broadcast message to logger.""" super().__init__(*args, **kwargs) if args: logger.warning(str(args[0]), stacklevel=2)