Skip to content

Commit a388d0e

Browse files
committed
web: Change log level to "warn" for tests
The level "info" produces a lot of spam. Each message sent between the browser and the client is logged as info. Changing it to "warn" preserves important output only, including console logs.
1 parent 0dcbbd5 commit a388d0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/packages/selfhosted/wdio.conf.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ export const config: WebdriverIO.Config = {
222222
],
223223
maxInstances: maxInstances,
224224
capabilities,
225-
logLevel: "info",
225+
// wdio produces a lot of spam on info
226+
logLevel: "warn",
226227
bail: 0,
227228
baseUrl: "http://localhost",
228229
waitforTimeout: 30000,

0 commit comments

Comments
 (0)