Source code for univention.ldap_cache.log

#!/usr/bin/python3
# SPDX-FileCopyrightText: 2021-2025 Univention GmbH
# SPDX-License-Identifier: AGPL-3.0-only

import logging
from typing import Any


[docs] def log(*msgs: Any) -> None: logger = logging.getLogger('univention.ldap_cache') logger.info(*msgs)
[docs] def debug(*msgs: Any) -> None: logger = logging.getLogger('univention.ldap_cache') logger.debug(*msgs)