From ed1b33b32af252f24f5f66ea05f2cfc70093755d Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 14 Mar 2024 09:17:45 -0700 Subject: [PATCH] Refactor log banner in octokit.ts --- package/src/lib/octokit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/src/lib/octokit.ts b/package/src/lib/octokit.ts index baf8b5d..82e4962 100644 --- a/package/src/lib/octokit.ts +++ b/package/src/lib/octokit.ts @@ -20,7 +20,7 @@ const gistLogger = async ( // simplify console.log const log = console.log; // Create a log banner to identify logs from this package - const logBanner = chalk.blue("[")+chalk.blue("astro-gists : octokit")+chalk.blue("] "); + const logBanner = chalk.blue("[astro-gists : octokit] "); // if checkVerbose is true and isVerbose is true, log the message if (!VerboseCheck || VerboseCheck && isVerbose) { if (type === "info") {