remove console log

This commit is contained in:
MathieuG-P
2022-07-23 11:38:54 +02:00
parent 4067b41558
commit 0c51a8846d
@@ -44,7 +44,6 @@ export class ConfigurationService {
public watch<T>(key: DefaultConfigKey | string): BehaviorSubject<T>{
if(this.observers.has(key)){ return this.observers.get(key); }
this.observers.set(key, new BehaviorSubject(this.get(key)));
console.log(this.observers);
return this.observers.get(key);
}
}