MCPcopy Index your code
hub / github.com/codeaashu/claude-code / logSessionStart

Function logSessionStart

src/bridge/bridgeUI.ts:322–330  ·  view source on GitHub ↗
(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

Calls 2

printLogFunction · 0.85
timestampFunction · 0.85

Tested by

no test coverage detected