* Stop file watching for a session
(sessionId: string)
| 122 | * Stop file watching for a session |
| 123 | */ |
| 124 | private stopWatchingSession(sessionId: string): void { |
| 125 | this.fileWatcher.stopWatching(sessionId); |
| 126 | this.logger?.info(`[GitStatus] Stopped file watching for session ${sessionId}`); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Start git status manager (initializes file watching) |
no test coverage detected