Function
logSessionStart
(sessionId: string, prompt: string)
Source from the content-addressed store, hash-verified
| 320 | }, |
| 321 | |
| 322 | logSessionStart(sessionId: string, prompt: string): void { |
| 323 | if (verbose) { |
| 324 | const short = truncatePrompt(prompt, 80) |
| 325 | printLog( |
| 326 | chalk.dim(`[${timestamp()}]`) + |
| 327 | ` Session started: ${chalk.white(`"${short}"`)} (${chalk.dim(sessionId)})\n`, |
| 328 | ) |
| 329 | } |
| 330 | }, |
| 331 | |
| 332 | logSessionComplete(sessionId: string, durationMs: number): void { |
| 333 | printLog( |
Callers
nothing calls this directly
Tested by
no test coverage detected