analytics: lower log severity when we fail to create a handler

It'snot the end of the world, we can move on.
This commit is contained in:
Saúl Ibarra Corretgé 2017-09-05 10:48:57 +02:00
parent eca04de348
commit 8fc095039e
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ function _loadHandlers(scriptURLs, handlerConstructorOptions) {
try {
handlers.push(new Handler(handlerConstructorOptions));
} catch (error) {
logger.error('error instantiating analytics impl', error);
logger.warn(`Error creating analytics handler: ${error}`);
}
}