Spaces:
Sleeping
Sleeping
File size: 8,243 Bytes
2b7b752 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | """
Centralized logging configuration for the Executive Education RAG Chatbot.
"""
import logging, os, sys, warnings, colorama
from collections import defaultdict
from colorama import Fore, Style
from typing import Literal
from src.config import config
file_handlers = defaultdict(list)
import json
from datetime import datetime, timezone
import os
# Initialize colorama for cross-platform color support
colorama.init()
class DefaultFormatter(logging.Formatter):
def format(self, record):
record = logging.makeLogRecord(record.__dict__)
if hasattr(record, 'name'):
rname = record.name if len(record.name) <= 17 else record.name[:14] + '...'
record.name = rname
return super().format(record)
class ColoredFormatter(logging.Formatter):
"""Custom formatter with color support for console output ONLY.
Never mutates the original LogRecord (so file handlers stay clean)."""
COLORS = {
'DEBUG': Fore.CYAN,
'INFO': Fore.GREEN,
'WARNING': Fore.YELLOW,
'ERROR': Fore.RED,
'CRITICAL': Fore.MAGENTA + Style.BRIGHT,
}
ALIASES = {
'DEBUG': 'DEBUG',
'INFO': 'INFO ',
'WARNING': 'WARN ',
'ERROR': 'ERROR',
'CRITICAL': 'CRITC'
}
def format(self, record):
record = logging.makeLogRecord(record.__dict__)
# Add color to the level name
if hasattr(record, 'levelname') and record.levelname in self.COLORS:
lname = record.levelname
color = self.COLORS[lname]
if lname == 'ERROR' and hasattr(record, 'message'):
record.message = f"{color}{record.message}{Style.RESET_ALL}"
record.levelname = f"{color}{self.ALIASES[lname]}{Style.RESET_ALL}"
# Add color to the module name
if hasattr(record, 'name'):
rname = record.name if len(record.name) <= 17 else record.name[:14] + '...'
record.name = f"{Fore.CYAN}{rname}{Style.RESET_ALL}"
return super().format(record)
def setup_logging(level: str = "INFO") -> logging.Logger:
"""
Set up centralized logging configuration.
Args:
level: Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
Returns:
Configured logger instance
"""
os.makedirs(config.paths.LOGS, exist_ok=True)
# Convert string level to logging constant
numeric_level = getattr(logging, level.upper(), logging.INFO)
# Get root logger
logger = logging.getLogger()
# Avoid duplicate handlers if logger already configured
if logger.handlers:
logger.handlers.clear()
logger.setLevel(numeric_level)
# Create formatters
detailed_formatter = DefaultFormatter(
"(%(asctime)s) %(name)s\t %(levelname)s: %(message)s",
datefmt="%Y.%m.%d %H:%M:%S"
)
colored_formatter = ColoredFormatter(
"(%(asctime)s) %(name)s\t %(levelname)s: %(message)s",
datefmt="%Y.%m.%d %H:%M:%S"
)
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(numeric_level)
# Use colored formatter if terminal supports it
if _supports_color():
console_handler.setFormatter(colored_formatter)
else:
console_handler.setFormatter(detailed_formatter)
logger.addHandler(console_handler)
return logger
def get_logger(module_name: str) -> logging.Logger:
"""
Get a logger for a specific module.
Args:
module_name: Name of the module requesting the logger
Returns:
Logger instance
"""
logger = logging.getLogger(module_name)
logger.propagate = True
return logger
def create_file_handler(
file_path: str,
module_name: str,
mode: Literal['a', 'w'] = 'a',
level = logging.WARNING
) -> logging.FileHandler:
"""
Initializes a new FileHandler to redirect logs to the files.
All subsequent calls to the 'append_handlers' function with the name of the module
will append handlers stored under the module name to the logger.
Args:
file_path: path to the .log file where logs will be stored.
module_name: name of the logging module that this handler belongs to.
Returns:
File handler instance.
"""
global file_handlers
file_handler = logging.FileHandler(
file_path,
mode=mode,
encoding='utf-8'
)
file_handler.setLevel(level)
formatter = DefaultFormatter(
"(%(asctime)s) %(name)s\t %(levelname)s: %(message)s",
datefmt="%Y.%m.%d %H:%M:%S"
)
file_handler.setFormatter(formatter)
file_handlers[module_name].append(file_handler)
return file_handler
def append_file_handlers(logger: logging.Logger, module_name: str) -> None:
global file_handlers
for handler in file_handlers.get(module_name, []):
logger.addHandler(handler)
def _supports_color() -> bool:
"""
Check if the terminal supports color output.
Returns:
True if color is supported, False otherwise
"""
# Check if we're in a terminal
if not hasattr(sys.stdout, 'isatty') or not sys.stdout.isatty():
return False
# Check environment variables
if os.getenv('NO_COLOR'):
return False
if os.getenv('FORCE_COLOR'):
return True
# Check terminal type
term = os.getenv('TERM', '').lower()
if 'color' in term or term in ['xterm', 'xterm-256color', 'screen']:
return True
return False
def configure_external_loggers(level: str = "WARNING") -> None:
"""
Configure logging for external libraries to reduce noise.
Args:
level: Logging level for external libraries
"""
external_loggers = [
'selenium',
'urllib3',
'requests',
'chromadb',
'docling',
'docling_core',
'uvicorn',
'weaviate',
'langchain',
'langgraph',
'openai',
'httpx',
'usp',
]
numeric_level = getattr(logging, level.upper(), logging.WARNING)
for logger_name in external_loggers:
logging.getLogger(logger_name).setLevel(numeric_level)
def configure_internal_loggers():
# Logging output for all loggers
root_handler = create_file_handler(
file_path=os.path.join(config.paths.LOGS, 'logs.log'),
module_name='*',
mode='a',
level=logging.INFO,
)
root_logger = logging.getLogger()
root_logger.addHandler(root_handler)
# Scraping loggers tree configuration
scraping_handler = create_file_handler(
file_path=os.path.join(config.paths.LOGS, 'scraping.log'),
module_name='scraping',
mode='w',
level=logging.INFO,
)
scraping_logger = logging.getLogger('scraper')
scraping_logger.addHandler(scraping_handler)
# Global configuration function
def init_logging(level: str = "INFO") -> None:
"""
Initialize the global logging configuration.
Args:
level: Logging level
log_file: Optional log file path
"""
warnings.filterwarnings("ignore")
# Set up root logger
setup_logging(level=level)
# Configure loggers defined by this application
configure_internal_loggers()
# Configure external library loggers
configure_external_loggers()
class ConsentLogger:
def __init__(self):
log_dir = os.path.join('logs', 'consent')
os.makedirs(log_dir, exist_ok=True)
def log(self, session_id: str, decision: str, policy_version="1.0"):
try:
entry = {
"session_id": session_id,
"decision": decision,
"timestamp": datetime.now(timezone.utc).isoformat(),
"policy_version": policy_version
}
log_path = os.path.join('logs', 'consent', f"{session_id}.jsonl")
with open(log_path, "a", encoding="utf-8") as f:
f.write(json.dumps(entry, indent=2) + "\n")
except Exception as e:
print(f"Error logging consent decision: {e}")
|