From 21c55cf35ddfa5a3beacc2aacee3c1e169c259df Mon Sep 17 00:00:00 2001 From: Lee sang Yeop Date: Thu, 18 Jan 2024 14:32:47 +0900 Subject: [PATCH] =?UTF-8?q?fix(noticeHandler):=20=EA=B3=A0=EC=A0=95=20?= =?UTF-8?q?=EA=B3=B5=EC=A7=80=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20=EC=8B=A4?= =?UTF-8?q?=ED=8C=A8=20=EC=8B=9C=20=EC=8A=AC=EB=9E=99=20=EC=95=8C=EB=A6=BC?= =?UTF-8?q?=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/db/data/noticeHandler.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/db/data/noticeHandler.ts b/src/db/data/noticeHandler.ts index 1cd4b5d..1a26e14 100644 --- a/src/db/data/noticeHandler.ts +++ b/src/db/data/noticeHandler.ts @@ -83,7 +83,8 @@ const convertSpecificNoticeToPinnedNotice = async ( try { await db.execute(query); } catch (error) { - notificationToSlack(error.message + '\n 고정 공지로 변경 실패'); + console.log(error.message + '고정 공지로 변경 실패'); + // notificationToSlack(error.message + '\n 고정 공지로 변경 실패'); } };