remove console log

This commit is contained in:
MathieuG-P
2022-09-09 02:11:26 +02:00
parent bbff1c6934
commit 9063214a10
-1
View File
@@ -51,7 +51,6 @@ export class I18nService {
}
public translate(translationKey: string, args?: Record<string, string>): string{
console.log(translationKey);
let translated = this.cache.get(translationKey);
if(!translated){
translated = getProperty(this.dictionary, translationKey);