From 608f6342da11ea8d7ad077daba83233e8c80ac4e Mon Sep 17 00:00:00 2001 From: Rebecca-Chou Date: Thu, 10 Feb 2022 00:44:56 +0800 Subject: [PATCH] Debug placeholder --- lib/team.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/team.ts b/lib/team.ts index a56d2b75..e7b8c788 100644 --- a/lib/team.ts +++ b/lib/team.ts @@ -57,6 +57,8 @@ export async function getExecNames() { item1.order.localeCompare(item2.order) ); + console.log(execMembers); + formattedExec = execMembers.map( (member) => `0${member.order}- @@ -67,6 +69,8 @@ export async function getExecNames() { await client.unbind(); } + console.log(formattedExec); + return formattedExec; }