From 6478f3c53d12c74ff8cc8fba76c947e2602fcc15 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Fri, 9 Feb 2018 12:44:24 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20don=E2=80=99t=20log=20config=20with=20ev?= =?UTF-8?q?er=20lock=20file=20remove?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/workers/branch/lock-files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/workers/branch/lock-files.js b/lib/workers/branch/lock-files.js index c591516dd1..46fe54acae 100644 --- a/lib/workers/branch/lock-files.js +++ b/lib/workers/branch/lock-files.js @@ -242,7 +242,7 @@ async function writeExistingFiles(config) { packageLock ); } else { - logger.debug({ config }, `Removing ${basedir}/package-lock.json`); + logger.debug(`Removing ${basedir}/package-lock.json`); await fs.remove(upath.join(basedir, 'package-lock.json')); } if (packageFile.yarnLock && config.type !== 'lockFileMaintenance') { -- GitLab