Log an agent-loop iteration marker or phase transition. Chat-only.
(message: string, meta?: Record<string, unknown>)
| 90 | |
| 91 | /** Log an agent-loop iteration marker or phase transition. Chat-only. */ |
| 92 | agentLoop(message: string, meta?: Record<string, unknown>): void { |
| 93 | this.emit('debug', 'agentLoop', message, meta) |
| 94 | } |
| 95 | |
| 96 | /** Log a config transform returned by a middleware `onConfig` hook. Chat-only. */ |
| 97 | config(message: string, meta?: Record<string, unknown>): void { |
no test coverage detected