refactor: remove debug console.log statements from hot-path components#668
refactor: remove debug console.log statements from hot-path components#668neuron-tech-ai wants to merge 1 commit into
Conversation
Strips bracket-prefixed debug traces that were left in from development from the model-download client method, download toast hook, model progress component, story store, and story playback hook. Startup lifecycle logs in App.tsx are left intact as they are useful signal for desktop app diagnostics.
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Removes leftover
console.logstatements from story playback, the API client, and other components that run on every interaction. These were added during development and not removed before merge.Two reasons to remove them: (1) console output in production is noise that makes real errors harder to spot, and (2) string interpolation for log messages has a small but real cost in tight loops.