()
| 163 | * Install console forwarding as early as possible so startup logs are persisted too. |
| 164 | */ |
| 165 | export function bootstrapLogger(): void { |
| 166 | if (!isTauri) return; |
| 167 | try { |
| 168 | installWebviewConsoleForward(); |
| 169 | } catch (e) { |
| 170 | console.warn('[Logger] Failed to install console forwarding:', e); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | // Logger initialization state |
| 175 | let initialized = false; |
no test coverage detected