From ddbd3f292ac4097488d552c52f7e6c00166cdee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 24 Sep 2020 11:57:47 +0200 Subject: [PATCH] fix(analytics) clarify log line --- react/features/analytics/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/analytics/functions.js b/react/features/analytics/functions.js index 4d79c8b15..f79483738 100644 --- a/react/features/analytics/functions.js +++ b/react/features/analytics/functions.js @@ -235,7 +235,7 @@ function _inIframe() { } /** - * Tries to load the scripts for the analytics handlers and creates them. + * Tries to load the scripts for the external analytics handlers and creates them. * * @param {Array} scriptURLs - The array of script urls to load. * @param {Object} handlerConstructorOptions - The default options to pass when creating handlers. @@ -286,7 +286,7 @@ function _loadHandlers(scriptURLs = [], handlerConstructorOptions) { logger.warn(`Error creating analytics handler: ${error}`); } } - logger.debug(`Loaded ${handlers.length} analytics handlers`); + logger.debug(`Loaded ${handlers.length} external analytics handlers`); return handlers; });