From 242601f5c0c63c0d51cf086089101df30dcf017e Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Fri, 27 Jan 2023 15:38:40 +0100 Subject: [PATCH] [FIX] Registry: Do not use custom logger for pacote @ui5/logger used to be based on 'npmlog', which allowed us to pass the same instance to pacote. Since this is no longer the case, remove the respective code. --- lib/ui5Framework/npm/Registry.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ui5Framework/npm/Registry.js b/lib/ui5Framework/npm/Registry.js index 61cc904e5..83833ec41 100644 --- a/lib/ui5Framework/npm/Registry.js +++ b/lib/ui5Framework/npm/Registry.js @@ -41,9 +41,6 @@ class Registry { const opts = { cache: this._cacheDir }; - if (log.isLevelEnabled("verbose")) { - opts.log = log._getLogger(); - } const config = libnpmconfig.read(opts, { cwd: this._cwd }).toJSON();