From b54ffa5661243f6c93808af1500879f12b18d903 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 5 Sep 2018 06:40:30 +0200 Subject: [PATCH] logs: log git fs mode --- lib/platform/git/storage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/platform/git/storage.js b/lib/platform/git/storage.js index 304693a556..e033064492 100644 --- a/lib/platform/git/storage.js +++ b/lib/platform/git/storage.js @@ -29,6 +29,7 @@ class Storage { async function initRepo(args) { cleanRepo(); + logger.info('Git FS mode enabled'); config = { ...args }; repoDir = await tmp.dir({ unsafeCleanup: true }); git = Git(repoDir.path).silent(true); -- GitLab