Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This module provides centralized logging utilities for the GNN processing pipeline. It standardizes log formatting, file handling, and output across all pipeline steps.
Sign in to like and favorite skills
This module provides centralized logging utilities for the GNN processing pipeline. It standardizes log formatting, file handling, and output across all pipeline steps.
logging_utils.py - Core logging configuration and utilitiesfrom utils.logging.logging_utils import setup_logging, get_logger # Setup logging for a pipeline step setup_logging(verbose=True, log_file="output/step.log") # Get a logger for a module logger = get_logger(__name__) logger.info("Processing started")
When modifying logging: