From 8d004ab6bd29ce12dd835e285ea821fd773649a6 Mon Sep 17 00:00:00 2001 From: Richard Date: Thu, 18 Mar 2021 12:24:44 +0100 Subject: [PATCH] fix: improve debug log output when checking if bundle exists --- classes/publish/package/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/publish/package/index.js b/classes/publish/package/index.js index 7c4f6d24..f8c96533 100644 --- a/classes/publish/package/index.js +++ b/classes/publish/package/index.js @@ -119,6 +119,7 @@ module.exports = class Publish { integrity = await this.checkIfAlreadyPublished.process(); } catch (err) { // exit early if already published + this.log.debug(`Determined that files have already been published. Additional information: ${err.message}`); return null; }