Skip to content
Snippets Groups Projects
Commit 2d590a7b authored by Hugo NOUTS's avatar Hugo NOUTS
Browse files

resolving thread

parent 5e35d885
No related branches found
No related tags found
Loading
Pipeline #65292 passed
......@@ -226,7 +226,7 @@ async function authenticate(login, password, baseUrl, apiAuthKey) {
}
} catch (error) {
log('debug', error.message)
Sentry.captureException(error, {
Sentry.captureException(`Authenticate failed: ${error.message}`, {
tags: {
section: 'authenticate',
},
......@@ -282,7 +282,7 @@ async function getData(response, baseUrl, apiAuthKey) {
throw errors.UNKNOWN_ERROR
}
} catch (error) {
Sentry.captureException(error, {
Sentry.captureException(`GetData failed: ${error.message}`, {
tags: {
section: 'getData',
},
......@@ -335,7 +335,7 @@ function format(response) {
}
})
} catch (error) {
Sentry.captureException(error, {
Sentry.captureException(`Format failed: ${error.message}`, {
tags: {
section: 'format',
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment