mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +01:00
Remove extra debug description for err.stack
This commit is contained in:
parent
bbedd8e54f
commit
b92719544e
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ async function uploadSecrets() {
|
|||
} catch (err: unknown) {
|
||||
if (err instanceof Error) {
|
||||
error(err.message);
|
||||
debug(`wrangler secret:bulk error stack: ${err.stack}`);
|
||||
err.stack && debug(err.stack);
|
||||
}
|
||||
throw new Error(`Failed to upload secrets.`);
|
||||
} finally {
|
||||
|
|
Loading…
Reference in a new issue