remove spamming of i18n warnings to console log (#6295)

This commit is contained in:
Denys Vuika 2020-10-29 13:07:52 +00:00 committed by GitHub
parent de580b64f2
commit 456e0424e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,6 @@ export class TranslateLoaderService implements TranslateLoader {
...this.getComponentToFetch(lang).map((observable) => {
return observable.pipe(
catchError((error) => {
console.warn(error);
hasFailures = true;
return of(error);
})