From 3bf2d50f140d9443ac9876b0a4640d01ac907e3d Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Thu, 5 Oct 2023 11:58:10 +0200 Subject: [PATCH] Fix logging level in actions test --- test/e2e/app-dir/actions/next.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/app-dir/actions/next.config.js b/test/e2e/app-dir/actions/next.config.js index fcfc7dcc99bad..bec00d8d3b471 100644 --- a/test/e2e/app-dir/actions/next.config.js +++ b/test/e2e/app-dir/actions/next.config.js @@ -2,7 +2,9 @@ module.exports = { productionBrowserSourceMaps: true, experimental: { - logging: 'verbose', + logging: { + level: 'verbose', + }, serverActions: true, }, }