Skip to content

Commit 54cac34

Browse files
authored
feat: Reduce the default Core log level to WARN and non Core Rust logs to ERROR (#1270)
1 parent e6305bb commit 54cac34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/worker/src/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export class Runtime {
210210
// eslint-disable-next-line deprecation/deprecation
211211
const { logging, metrics, tracingFilter, ...otherTelemetryOpts } = options.telemetryOptions ?? {};
212212

213-
const defaultFilter = tracingFilter ?? makeTelemetryFilterString({ core: 'INFO', other: 'INFO' });
213+
const defaultFilter = tracingFilter ?? makeTelemetryFilterString({ core: 'WARN', other: 'ERROR' });
214214
const loggingFilter = logging?.filter;
215215

216216
// eslint-disable-next-line deprecation/deprecation

0 commit comments

Comments
 (0)