diff --git a/src/vs/workbench/parts/output/electron-browser/outputServices.ts b/src/vs/workbench/parts/output/electron-browser/outputServices.ts index 1816d3ac4705c27e995efa5d04bd7cc14ccd7ffe..a2f92ae1e6749a862c0abab36d18bac9e54c9424 100644 --- a/src/vs/workbench/parts/output/electron-browser/outputServices.ts +++ b/src/vs/workbench/parts/output/electron-browser/outputServices.ts @@ -194,7 +194,7 @@ class OutputChannelBackedByFile extends AbstractFileOutputChannel implements Out ) { super(outputChannelIdentifier, fileService, modelService, modeService, panelService); - this.outputWriter = new RotatingLogger(this.id, this.file.fsPath, 1024 * 5, 1); + this.outputWriter = new RotatingLogger(this.id, this.file.fsPath, 1024 * 1024 * 30, 1); this.outputWriter.clearFormatters(); this._register(watchOutputDirectory(paths.dirname(this.file.fsPath), logService, (eventType, file) => this.onFileChangedInOutputDirector(eventType, file))); }