From bf11d76a935f9f191712d8b901c4b284932fa858 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 21 Apr 2021 09:57:21 +1000 Subject: [PATCH] Log in error raised by question --- src/chat/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat/index.ts b/src/chat/index.ts index 5986c8a6ba..7f47707e9f 100644 --- a/src/chat/index.ts +++ b/src/chat/index.ts @@ -40,7 +40,7 @@ const ChatContentTopic = 'dingpu'; 'Please choose a nickname: ' )) as unknown) as string; } catch (e) { - console.log('Using default nick.'); + console.log('Using default nick. Due to ', e); } console.log(`Hi, ${nick}!`);