diff --git a/index.js b/index.js
index b462c66ef51b0c91ee96fa51847c0b5aa391ce0a..ee09d2ed46a4b6c71e8c627ba92533b6758c4dc4 100644
--- a/index.js
+++ b/index.js
@@ -231,10 +231,14 @@ async function authenticate(login, password, baseUrl, apiAuthKey) {
     }
   } catch (error) {
     log('debug', error.message)
-    Sentry.captureException(error, `Authenticate failed: ${error.message}`, {
+    Sentry.captureException(error, {
       tags: {
         section: 'authenticate',
       },
+      extra: {
+        test: 'test',
+        who: login,
+      },
     })
     throw new Error(errors.LOGIN_FAILED)
   }