From 6b9968d804765888e12f2b251a808456157be192 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 3 Apr 2025 12:11:57 -0400 Subject: [PATCH] Add logging information re. fetched assets --- src/js/assets.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/assets.js b/src/js/assets.js index a9d07cf0a..809f5c470 100644 --- a/src/js/assets.js +++ b/src/js/assets.js @@ -955,6 +955,7 @@ assets.get = async function(assetKey, options = {}) { let error = 'ENOTFOUND'; for ( const contentURL of contentURLs ) { + ubolog(`Fetching ${contentURL} from remote server `); const details = assetDetails.content === 'filters' ? await assets.fetchFilterList(contentURL) : await assets.fetchText(contentURL);