diff --git a/wdio.conf.ts b/wdio.conf.ts
index f66acf3216840c26ade6942302d411f86917886f..b17e9e0022658ad1d4f80db60413ad0c2543c96e 100644
--- a/wdio.conf.ts
+++ b/wdio.conf.ts
@@ -127,7 +127,13 @@ export const config: Options.Testrunner = {
     // Services take over a specific job you don't want to take care of. They enhance
     // your test setup with almost no effort. Unlike plugins, they don't add new
     // commands. Instead, they hook themselves up into the test process.
-    services: ['chromedriver'],
+    services: [
+        ['chromedriver',
+            {
+                args: ["--verbose"]
+            }
+        ]
+    ],
 
     // Framework you want to run your specs with.
     // The following are supported: Mocha, Jasmine, and Cucumber