()
| 173 | } |
| 174 | |
| 175 | function getPersistMode(): 'compact' | 'full' | 'summary' { |
| 176 | const mode = getConfig().logging?.persist_mode; |
| 177 | return mode === 'full' || mode === 'summary' || mode === 'compact' ? mode : DEFAULT_PERSIST_MODE; |
| 178 | } |
| 179 | |
| 180 | function getLogFilePath(): string | null { |
| 181 | const dir = getLogDir(); |
no test coverage detected