* Frontend git status logging utility * Provides consistent, grouped logging for git status operations
| 4 | */ |
| 5 | |
| 6 | interface GitStatusLogContext { |
| 7 | operation: 'poll' | 'refresh' | 'update' | 'load'; |
| 8 | count?: number; |
| 9 | sessionId?: string; |
| 10 | projectName?: string; |
| 11 | state?: string; |
| 12 | } |
| 13 | |
| 14 | class FrontendGitStatusLogger { |
| 15 | private updateCount = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected