From 0c0d31994ebea29b272da825977d331d26a496a3 Mon Sep 17 00:00:00 2001 From: Schplee <24275329+Schplee@users.noreply.github.com> Date: Wed, 13 Jan 2021 23:42:51 -0800 Subject: [PATCH] Update logging exclusions (#99) --- src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.ts b/src/server.ts index c961a41..fd32c87 100644 --- a/src/server.ts +++ b/src/server.ts @@ -39,7 +39,7 @@ function findArray(haystack: string | any[], arr: any[]) { } function IsIgnoredCategory(categoryName: string) { - const IgnoredCategory = ['welcome', 'team', 'website-team']; + const IgnoredCategory = ['internal-development', 'internal-general', 'internal-casual', 'website']; return IgnoredCategory.includes(categoryName); }