# logger **Repository Path**: Lumosylva/logger ## Basic Information - **Project Name**: logger - **Description**: Python A logging module based on the logging library - **Primary Language**: Python - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-08 - **Last Updated**: 2025-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # logger Python A logging module based on the logging library Based on Python 3.12 usage: from logger import setup_logging, logger setup_logging(service_name="DataService", level="INFO") logger.info("Test") logger.debug("Test") logger.warning("Test") logger.exception("Test") logger.error("Test") logger.critical("Test")