Source code for robot.output.librarylogger

#  Copyright 2008-2015 Nokia Networks
#  Copyright 2016-     Robot Framework Foundation
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

"""Implementation of the public logging API for libraries.

This is exposed via :py:mod:`robot.api.logger`. Implementation must reside
here to avoid cyclic imports.
"""

from threading import current_thread
from typing import Any

from robot.utils import safe_str

from .logger import LOGGER
from .loggerhelper import Message, write_to_console

# This constant is used by BackgroundLogger.
# https://github.com/robotframework/robotbackgroundlogger
LOGGING_THREADS = ["MainThread", "RobotFrameworkTimeoutThread"]


[docs] def write(msg: Any, level: str, html: bool = False): if not isinstance(msg, str): msg = safe_str(msg) if level.upper() not in ("TRACE", "DEBUG", "INFO", "HTML", "WARN", "ERROR"): if level.upper() == "CONSOLE": level = "INFO" console(msg) else: raise RuntimeError(f"Invalid log level '{level}'.") if current_thread().name in LOGGING_THREADS: LOGGER.log_message(Message(msg, level, html))
[docs] def trace(msg, html=False): write(msg, "TRACE", html)
[docs] def debug(msg, html=False): write(msg, "DEBUG", html)
[docs] def info(msg, html=False, also_console=False): write(msg, "INFO", html) if also_console: console(msg)
[docs] def warn(msg, html=False): write(msg, "WARN", html)
[docs] def error(msg, html=False): write(msg, "ERROR", html)
[docs] def console(msg: str, newline: bool = True, stream: str = "stdout"): write_to_console(msg, newline, stream)