From d858d85205cc99d7ecf617754612d2a17ff4eda0 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 14 Oct 2020 08:50:51 +0200 Subject: [PATCH] logs: trace ensureIssueClosing --- lib/platform/github/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/platform/github/index.ts b/lib/platform/github/index.ts index 9fb2ac8dcf..d242558fdd 100644 --- a/lib/platform/github/index.ts +++ b/lib/platform/github/index.ts @@ -1111,7 +1111,7 @@ export async function ensureIssue({ } export async function ensureIssueClosing(title: string): Promise<void> { - logger.debug(`ensureIssueClosing(${title})`); + logger.trace(`ensureIssueClosing(${title})`); const issueList = await getIssueList(); for (const issue of issueList) { if (issue.state === 'open' && issue.title === title) { -- GitLab