Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 56e8659

Browse files
committed
Log when auth request is being sent in dev mode.
1 parent 3a05437 commit 56e8659

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/channels/private-channel.ts

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ export class PrivateChannel {
3535
rejectUnauthorized: false
3636
};
3737

38+
if (this.options.devMode) {
39+
Log.info(`[${new Date().toLocaleTimeString()}] - Sending auth request to: ${options.url}\n`);
40+
}
41+
3842
return this.serverRequest(socket, options);
3943
}
4044

0 commit comments

Comments
 (0)