Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/server/lib/cloud/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import { isNonRetriableCertErrorCode } from '../network/non_retriable_cert_error

const debug = debugModule('cypress:server:cloud:api')
const debugProtocol = debugModule('cypress:server:protocol')
const debugVerbose = debugModule('cypress-verbose:server:cloud:api')

const THIRTY_SECONDS = humanInterval('30 seconds')
const SIXTY_SECONDS = humanInterval('60 seconds')
Expand Down Expand Up @@ -164,7 +165,8 @@ const rp = request.defaults((params: CypressRequestOptions, callback) => {
cacheResponse(resp, params)
}

return debug('response %o', resp)
debug(`${params.method} ${params.url} response received`)
debugVerbose('response: %o', resp)
})
})

Expand Down
Loading