MCPcopy
hub / github.com/agent-infra/sandbox / info

Method info

sdk/js/src/core/logging/logger.ts:140–144  ·  view source on GitHub ↗

* Logs an info message if info logging is enabled. * @param message - The message to log * @param args - Additional arguments to log

(message: string, ...args: unknown[])

Source from the content-addressed store, hash-verified

138 * @param args - Additional arguments to log
139 */
140 public info(message: string, ...args: unknown[]): void {
141 if (this.isInfo()) {
142 this.logger.info(message, ...args);
143 }
144 }
145
146 /**
147 * Checks if warning logging is enabled.

Callers

nothing calls this directly

Calls 2

isInfoMethod · 0.95
infoMethod · 0.65

Tested by

no test coverage detected