Source code for camel.logger

# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
# 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.
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========


import logging
import os
import sys

# Create a private logger
_logger = logging.getLogger('camel')


def _configure_library_logging():
    if os.environ.get('CAMEL_LOGGING_DISABLED', 'False').lower() == 'true':
        return

    if not logging.root.handlers and not _logger.handlers:
        logging.basicConfig(
            level=os.environ.get('CAMEL_LOGGING_LEVEL', 'WARNING').upper(),
            format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
            stream=sys.stdout,
        )
        logging.setLoggerClass(logging.Logger)
        _logger.info(
            f"CAMEL library logging has been configured "
            f"(level: {_logger.getEffectiveLevel()}). "
            f"To change level, use set_log_level() or "
            "set CAMEL_LOGGING_LEVEL env var. To disable logging, "
            "set CAMEL_LOGGING_DISABLED=true or use disable_logging()"
        )
    else:
        _logger.debug("Existing logger configuration found, using that.")


def set_log_file(file_path):
    r"""Set a file handler for the CAMEL library logging.

    Args:
        file_path (str): Path to the log file. If the directory doesn't exist,
            it will be created.

    Returns:
        logging.FileHandler: The file handler that was added to the logger.
    """
    # Check for existing handlers to the same file
    for handler in _logger.handlers:
        if isinstance(handler, logging.FileHandler) and os.path.abspath(
            handler.baseFilename
        ) == os.path.abspath(file_path):
            _logger.info(f"File handler already exists for: {file_path}")
            return handler

    # Create directory if it doesn't exist
    log_dir = os.path.dirname(file_path)
    if log_dir and not os.path.exists(log_dir):
        os.makedirs(log_dir)

    # Create file handler
    file_handler = logging.FileHandler(file_path)
    file_handler.setFormatter(
        logging.Formatter(
            '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
        )
    )

    # Set the same level as the logger
    file_handler.setLevel(_logger.getEffectiveLevel())

    # Add the handler to the logger
    _logger.addHandler(file_handler)
    _logger.info(f"Log file configured at: {file_path}")

    return file_handler


[docs] def disable_logging(): r"""Disable all logging for the CAMEL library. This function sets the log level to a value higher than CRITICAL, effectively disabling all log messages, and adds a NullHandler to suppress any potential warnings about no handlers being found. """ os.environ['CAMEL_LOGGING_DISABLED'] = 'true' _logger.setLevel(logging.CRITICAL + 1) # Avoid adding multiple NullHandlers if not any( isinstance(handler, logging.NullHandler) for handler in _logger.handlers ): _logger.addHandler(logging.NullHandler()) _logger.debug("Logging has been disabled.")
[docs] def enable_logging(): r"""Enable logging for the CAMEL library. This function re-enables logging if it was previously disabled, and configures the library logging using the default settings. If the logging is already configured, this function does not change its configuration. """ os.environ['CAMEL_LOGGING_DISABLED'] = 'false' _configure_library_logging()
[docs] def set_log_level(level): r"""Set the logging level for the CAMEL library. Args: level (Union[str, int]): The logging level to set. This can be a string (e.g., 'INFO') or a logging level constant (e.g., logging.INFO, logging.DEBUG). See https://docs.python.org/3/library/logging.html#levels Raises: ValueError: If the provided level is not a valid logging level. """ valid_levels = ['NOTSET', 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'] if isinstance(level, str): if level.upper() not in valid_levels: raise ValueError( f"Invalid logging level." f" Choose from: {', '.join(valid_levels)}" ) level = level.upper() elif not isinstance(level, int): raise ValueError( "Logging level must be an option from the logging module." ) _logger.setLevel(level) # Update level for all handlers for handler in _logger.handlers: try: handler.setLevel(level) except Exception as e: _logger.warning(f"Failed to set level on handler {handler}: {e}") _logger.debug(f"Logging level set to: {logging.getLevelName(level)}")
def get_logger(name): r"""Get a logger with the specified name, prefixed with 'camel.'. Args: name (str): The name to be appended to 'camel.' to create the logger. Returns: logging.Logger: A logger instance with the name 'camel.{name}'. """ return logging.getLogger(f'camel.{name}') # Lazy configuration: Only configure logging if explicitly enabled. if os.environ.get('CAMEL_LOGGING_DISABLED', 'False').strip().lower() != 'true': _configure_library_logging()