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:
parent
eca04de348
commit
8fc095039e
|
@ -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}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue