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; }