MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / clipStack

Function clipStack

packages/agent-core/src/logging/formatter.ts:149–152  ·  view source on GitHub ↗
(stack: string)

Source from the content-addressed store, hash-verified

147}
148
149function clipStack(stack: string): string {
150 if (Buffer.byteLength(stack, 'utf-8') <= STACK_MAX_BYTES) return stack;
151 return clipBytes(stack, STACK_MAX_BYTES);
152}
153
154function indentStack(stack: string): string {
155 return stack

Callers 1

formatEntryFunction · 0.85

Calls 1

clipBytesFunction · 0.85

Tested by

no test coverage detected