Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit 3a2a9e3

Browse files
committed
Fix debug format
1 parent d0169b7 commit 3a2a9e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deploy/upload-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function retryUpload(uploadFn, maxRetry) {
9898
case e.name === 'FetchError': {
9999
debug(`Upload failed... retrying`)
100100
const msg = e.json || e.data
101-
if (msg) debug('O%', msg)
101+
if (msg) debug('%o', msg)
102102
return fibonacciBackoff.backoff()
103103
}
104104
default: {

0 commit comments

Comments
 (0)