From ebaf8960452420f681c6406f3a6956279a3d408e Mon Sep 17 00:00:00 2001 From: Adishwar Rishi Date: Wed, 3 Jan 2024 13:19:58 +1100 Subject: [PATCH] Improve debug error message for secret:bulk command failure --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a285a508..7a72c462 100755 --- a/src/index.ts +++ b/src/index.ts @@ -208,7 +208,7 @@ async function uploadSecrets() { } catch (err: unknown) { if (err instanceof Error) { error(err.message); - debug(`Secret upload error stack: ${err.stack}`); + debug(`wrangler secret:bulk error stack: ${err.stack}`); } throw new Error(`Failed to upload secrets.`); } finally {