From 8b596ef2139977c1c02ed1f2f2ddff4d2a3d91a3 Mon Sep 17 00:00:00 2001 From: Natasha <67543397+NovemberTang@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:54:56 +0100 Subject: [PATCH] stop logging the full findings table --- packages/cloudbuster/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/cloudbuster/src/index.ts b/packages/cloudbuster/src/index.ts index 7fd004cc..a1bf7c77 100644 --- a/packages/cloudbuster/src/index.ts +++ b/packages/cloudbuster/src/index.ts @@ -24,7 +24,10 @@ export async function main() { const tableContents: cloudbuster_fsbp_vulnerabilities[] = dbResults.flatMap( findingsToGuardianFormat, ); - console.table(tableContents); + + console.log( + `${tableContents.length} high and critical FSBP findings detected`, + ); await prisma.cloudbuster_fsbp_vulnerabilities.deleteMany(); await prisma.cloudbuster_fsbp_vulnerabilities.createMany({