We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f04bd4 commit 8d02fa0Copy full SHA for 8d02fa0
packages/logger/src/types/Logger.ts
@@ -184,19 +184,20 @@ type LogBufferOption = {
184
* Whether logs should be buffered
185
*/
186
enabled?: boolean;
187
-
188
/**
189
* Maximum size of the buffer in bytes
190
* @default `20480`
191
192
maxBytes?: number;
193
194
* Flush the buffer when an error is logged
+ * @default `true`
195
196
flushOnErrorLog?: boolean;
197
198
* The threshold to buffer logs. Logs with a level below
199
* this threshold will be buffered
200
+ * @default `'DEBUG'`
201
202
bufferAtVerbosity?: Omit<
203
LogLevel,
0 commit comments