UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with external MCP server integration, multi-provider support, and professional CLI. Connect to 65+ MCP servers for filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 9 major pr

26 lines (25 loc) 636 B
/** * NeuroLink Logger Utility * * Provides conditional logging based on NEUROLINK_DEBUG environment variable */ export const logger = { debug: (...args) => { if (process.env.NEUROLINK_DEBUG === 'true') { console.log(...args); } }, info: (...args) => { // Completely disabled for clean CLI demo output }, warn: (...args) => { // Completely disabled for clean CLI demo output }, error: (...args) => { // Always show errors regardless of debug mode console.error(...args); }, always: (...args) => { console.log(...args); } };