// Simple logger utility to avoid JSON parsing issues
class Logger {
static warn(message, ...args) {
// Silent logging to avoid JSON parsing issues in MCP
// In production, this could write to a log file
}
static log(message, ...args) {
// Silent logging to avoid JSON parsing issues in MCP
// In production, this could write to a log file
}
static error(message, ...args) {
// Silent logging to avoid JSON parsing issues in MCP
// In production, this could write to a log file
}
}
export { Logger };