There was an error while loading. Please reload this page.
1 parent e1ee9ed commit 6a9f309Copy full SHA for 6a9f309
1 file changed
src/logging/fileLogger.tsx
@@ -42,8 +42,8 @@ function wrapWinstonLogger(
42
* @returns A {@link AsyncLogger} that writes to a rotating file via winston.
43
*/
44
export function createFileLogger(config: FileLoggerConfig): AsyncLogger {
45
- const maxSizeInMB = config.maxSizeInMB ?? 10;
46
- const maxFileCount = config.maxFileCount ?? 5;
+ const maxSizeInMB = config.maxSizeInMB ?? 5;
+ const maxFileCount = config.maxFileCount ?? 10;
47
const bindings = config.bindings ?? {};
48
49
const transport = new DailyRotateFile({
0 commit comments