RecordingAppOptions
Electron APIs / recorder / RecordingAppOptions
Configuration options for launching or customizing the recording application behavior.
See
Example
const options: RecordingAppOptions = {
showDebugWindow: true,
enableDebugLogs: true,
maxLogFiles: 20,
};
Properties
| Property | Type | Description |
|---|---|---|
crashDumps? | CrashDumpOptions | Tune OBS-host crash dumps. Mini-dump capture is on by default; these options change the detail level and retention count, or turn capture off entirely via type: 'off'. See CrashDumpOptions |
enableDebugLogs? | boolean | Enables verbose debug logs for the recorder. Can be used to troubleshoot issues during recording. |
maxLogFiles? | number | Maximum number of OBS log files to retain under the recorder's ow-obs/logs folder. Once the number of logs exceeds this value, the oldest logs are gradually pruned. Must be a positive integer. Defaults to 10. |
showDebugWindow? | boolean | Whether to show the recorder capture (OBS) window during runtime. Useful for debugging or development purposes. |