From 152f5ae744e21ae85c8e59bec7cff856688b7c94 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sun, 22 Oct 2023 12:18:55 +0100 Subject: [PATCH] chore: remove log missed log --- src/handlers/comment/handlers/review.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/handlers/comment/handlers/review.ts b/src/handlers/comment/handlers/review.ts index eb1985b4a..aa28f8714 100644 --- a/src/handlers/comment/handlers/review.ts +++ b/src/handlers/comment/handlers/review.ts @@ -325,14 +325,6 @@ async function findFileInRepo(context: any, fileName: string): Promise { const file = tree.tree.find((f: any) => f.type === "blob" && f.path.toLowerCase().endsWith(fileName.toLowerCase())); - console.log("=================tree==================="); - console.log(tree); - console.log("===================================="); - - console.log("=================file==================="); - console.log(file); - console.log("===================================="); - if (!file) { return null; }