mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2025-01-08 02:21:44 +00:00
log customHeaders parse error
Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
This commit is contained in:
parent
e8dd067b83
commit
394beeafea
2 changed files with 4 additions and 2 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -9748,7 +9748,8 @@ if (!!core.getInput('customHeaders')) {
|
||||||
try {
|
try {
|
||||||
customHeaders = JSON.parse(core.getInput('customHeaders'));
|
customHeaders = JSON.parse(core.getInput('customHeaders'));
|
||||||
} catch(error) {
|
} catch(error) {
|
||||||
core.error('Could not parse customHeaders string value')
|
core.debug(`Invalid customHeaders string: ${core.getInput('customHeaders')}`)
|
||||||
|
core.error(`Could not parse customHeaders string value: ${error}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ if (!!core.getInput('customHeaders')) {
|
||||||
try {
|
try {
|
||||||
customHeaders = JSON.parse(core.getInput('customHeaders'));
|
customHeaders = JSON.parse(core.getInput('customHeaders'));
|
||||||
} catch(error) {
|
} catch(error) {
|
||||||
core.error('Could not parse customHeaders string value')
|
core.debug(`Invalid customHeaders string: ${core.getInput('customHeaders')}`)
|
||||||
|
core.error(`Could not parse customHeaders string value: ${error}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue