MCPcopy
hub / github.com/slopus/happy / infoDeveloper

Method infoDeveloper

packages/happy-cli/src/ui/logger.ts:133–141  ·  view source on GitHub ↗
(message: string, ...args: unknown[])

Source from the content-addressed store, hash-verified

131 }
132
133 infoDeveloper(message: string, ...args: unknown[]): void {
134 // Always write to debug
135 this.debug(message, ...args)
136
137 // Write to info if DEBUG mode is on
138 if (process.env.DEBUG) {
139 this.logToConsole('info', '[DEV]', message, ...args)
140 }
141 }
142
143 warn(message: string, ...args: unknown[]): void {
144 this.logToConsole('warn', '', message, ...args)

Callers 1

runClaudeFunction · 0.80

Calls 2

debugMethod · 0.95
logToConsoleMethod · 0.95

Tested by

no test coverage detected