Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 859 Bytes

File metadata and controls

26 lines (21 loc) · 859 Bytes

Console Replacement Progress

Status: In Progress

Completed Files (app/api/)

  • ✅ app/api/metokens-subgraph/route.ts
  • ✅ app/api/reality-eth-subgraph/route.ts
  • ✅ app/api/story/mint/route.ts
  • ✅ app/api/metokens/sync/route.ts

Remaining Files

  • app/api: ~136 console statements across ~41 files
  • app (non-api): ~65 console statements
  • components: ~549 console statements
  • lib: ~857 console statements

Strategy

  1. Continue processing high-priority API routes
  2. Process components directory (client-side, use logger)
  3. Process lib directory (mixed, use logger/serverLogger based on context)
  4. Process remaining app files

Notes

  • Server-side files (API routes, server actions) → use serverLogger
  • Client-side files (components, client hooks) → use logger
  • Files in lib/ → determine based on usage context