MCPcopy
hub / github.com/RunMaestro/Maestro / info

Function info

src/web/utils/logger.ts:86–94  ·  view source on GitHub ↗

* Log an info message

(message: string, context?: string, data?: unknown)

Source from the content-addressed store, hash-verified

84 * Log an info message
85 */
86 info(message: string, context?: string, data?: unknown): void {
87 if (!shouldLog('info')) return;
88 const formatted = formatMessage('info', message, context);
89 if (data !== undefined) {
90 console.info(formatted, data);
91 } else {
92 console.info(formatted);
93 }
94 },
95
96 /**
97 * Log a warning message

Callers

nothing calls this directly

Calls 3

shouldLogFunction · 0.85
formatMessageFunction · 0.85
infoMethod · 0.65

Tested by

no test coverage detected