@aiondadotcom/mcp-salesforce
Version:
Model Context Protocol (MCP) server for Salesforce integration using OAuth authentication
20 lines (16 loc) • 544 B
JavaScript
// 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 };