MCPcopy Create free account
hub / github.com/AIScientists-Dev/Flowtrace / debug

Method debug

frontend/src/shared/lib/logger.ts:113–119  ·  view source on GitHub ↗

* Log debug - for detailed diagnostic information * Use when: Tracing execution flow, inspecting data

(message: string, context?: LogContext)

Source from the content-addressed store, hash-verified

111 * Use when: Tracing execution flow, inspecting data
112 */
113 debug(message: string, context?: LogContext): void {
114 // Only log debug in development
115 if (!this.isDevelopment) return
116
117 const formatted = this.formatMessage('debug', message, context)
118 console.log(formatted)
119 }
120}
121
122// Export singleton instance

Callers 1

createLoggerFunction · 0.80

Calls 1

formatMessageMethod · 0.95

Tested by

no test coverage detected