fix(inspector): do not start recording by default (#34276)
This commit is contained in:
parent
cd9d02faf9
commit
37c2569eb2
|
@ -108,7 +108,7 @@ export class ContextRecorder extends EventEmitter {
|
|||
this._listeners.push(eventsHelper.addEventListener(process, 'exit', () => {
|
||||
this._throttledOutputFile?.flush();
|
||||
}));
|
||||
this.setEnabled(true);
|
||||
this.setEnabled(params.mode === 'recording');
|
||||
}
|
||||
|
||||
setOutput(codegenId: string, outputFile?: string) {
|
||||
|
|
Loading…
Reference in New Issue