From c2229df24f09772920f13667aba1ef982ce51b55 Mon Sep 17 00:00:00 2001 From: Shiv Bhonde Date: Wed, 3 Jul 2024 22:52:48 +0900 Subject: [PATCH] remove console log from runPrettier function --- src/tasks/prettier-format.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tasks/prettier-format.ts b/src/tasks/prettier-format.ts index 2bf6cb3da..58e5458d2 100644 --- a/src/tasks/prettier-format.ts +++ b/src/tasks/prettier-format.ts @@ -4,7 +4,6 @@ import { Options } from "../types"; import { SOLIDITY_FRAMEWORKS } from "../utils/consts"; async function runPrettier(targetPath: string[], prettierConfigPath: string, prettierPlugins: string[]) { - console.log("the prettier config path is", prettierConfigPath); const result = await execa("yarn", [ "prettier", "--write",