Skip to content

Commit

Permalink
remove extra log during building stack
Browse files Browse the repository at this point in the history
  • Loading branch information
iyashtykov committed Sep 13, 2024
1 parent f2cee6b commit ca91c86
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,8 @@ export async function publish(

const headers = Object.assign(postData.getHeaders(), getBearer())
headers['Content-Length'] = await postData.getLengthSync()

console.log('headers', headers)
console.log('data', postData)

const res = await api(`/stacks/${stackId}/versions`, postData, headers)
console.log('publish result', res)

return res
} catch (error: any) {
if (error.json) {
Expand Down

0 comments on commit ca91c86

Please sign in to comment.