Skip to content

Commit 1929b0f

Browse files
committed
fix(timeout): handle timeout warning
1 parent 558c438 commit 1929b0f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/transport.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ export abstract class Transport<T extends BaseInteraction = any> {
317317
if (typeof error === 'undefined') {
318318
if (isSilent) return;
319319
console.warn(
320-
`The event '${action}' timed out for ${timeout} seconds...`
320+
`The event '${action}' timed out for ${timeout} seconds...`,
321+
rawRequestData
321322
);
322323
} else {
323324
if (__DEV__) {

0 commit comments

Comments
 (0)