File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/bundler-plugin-core/src/utils Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { FailedFetchError } from "../errors/FailedFetchError.ts";
44import { UploadLimitReachedError } from "../errors/UploadLimitReachedError.ts" ;
55import { type ProviderServiceParams } from "../types.ts" ;
66import { fetchWithRetry } from "./fetchWithRetry.ts" ;
7- import { green , red } from "./logging.ts" ;
7+ import { debug , green , red } from "./logging.ts" ;
88import { preProcessBody } from "./preProcessBody.ts" ;
99import { NoUploadTokenError } from "../errors/NoUploadTokenError.ts" ;
1010import { findGitService } from "./findGitService.ts" ;
@@ -95,6 +95,7 @@ export const getPreSignedURL = async ({
9595
9696 let response : Response ;
9797 try {
98+ debug ( `Request body: ${ JSON . stringify ( preProcessBody ( requestBody ) ) } ` ) ;
9899 response = await fetchWithRetry ( {
99100 retryCount,
100101 url : `${ apiUrl } ${ API_ENDPOINT } ` ,
You can’t perform that action at this time.
0 commit comments