voxcity.utils.logging ===================== .. py:module:: voxcity.utils.logging .. autoapi-nested-parse:: Lightweight, centralized logging utilities for the voxcity package. Usage: from voxcity.utils.logging import get_logger logger = get_logger(__name__) Environment variables: VOXCITY_LOG_LEVEL: DEBUG, INFO, WARNING, ERROR, CRITICAL (default: INFO) Functions --------- .. autoapisummary:: voxcity.utils.logging.get_logger Module Contents --------------- .. py:function:: get_logger(name: Optional[str] = None) -> logging.Logger Return a child logger under the package root logger. - Ensures a single configuration for the package - Respects VOXCITY_LOG_LEVEL if set