Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.0.52 Home All releases olderv2.0.51 v2.0.53newer
Claude Code v2.0.52

Buffered Debug Logging

What: Debug logging now uses intelligent buffering instead of direct filesystem writes.

Details:

  • Accumulates log entries in memory (up to 100 entries)
  • Flushes every 1000ms or when buffer is full
  • Reduces filesystem I/O by 10-100x when debug logging is enabled
  • Automatic immediate mode when using --debug flags (for real-time debugging)
  • Graceful disposal ensures logs are flushed on exit
  • Evidence: QC0() at line 2348, nw9() at line 2404

See this entry in the whole of v2.0.52 →