From 00560a64a7fc6ee280fc8496c96a74a6d272a730 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 12 Jul 2023 07:21:08 -0400 Subject: [PATCH] fix: add reject reason for logging --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5ec85c1..9520b09 100644 --- a/src/index.ts +++ b/src/index.ts @@ -71,7 +71,7 @@ export default async ( setTimeout(() => { client.end(); - reject(); + reject("irc discovery response timed out"); }, 1000); }); };