MOBILE-3833 compile: Increase log severity of inject error

main
Dani Palou 2022-03-23 10:34:57 +01:00
parent 0bc6568f1f
commit e0309cf320
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ export class CoreCompileProvider {
// Inject the provider to the instance. We use the class name as the property name.
instance[providerDef.name.replace(/DelegateService$/, 'Delegate')] = this.injector.get(providerDef);
} catch (ex) {
this.logger.warn('Error injecting provider', providerDef.name, ex);
this.logger.error('Error injecting provider', providerDef.name, ex);
}
}
}