Skip to content

Commit d08a7a5

Browse files
author
Gabriele Panico
committed
minor improvements
1 parent c09dd24 commit d08a7a5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,11 +268,11 @@ export class AppComponent implements OnInit {
268268

269269
ngOnInit(): void {
270270
const appconfig = this.appConfigProvider.getConfig();
271-
this.logger.log('[APP-COMP] ngOnInit appconfig', appconfig)
271+
// this.logger.log('[APP-COMP] ngOnInit appconfig', appconfig)
272272

273273
this.globalSettingsService.obsSettingsService.subscribe((resp) => {
274274
if(resp){
275-
this.logger.log('[APP-COMP] ngOnInit globalSettingsService', this.g)
275+
// this.logger.log('[APP-COMP] ngOnInit globalSettingsService', this.g)
276276
// /** INIT */
277277
// this.getRouteParamsAndSetLoggerConfig();
278278

src/chat21-core/providers/mqtt/chat-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class Chat21Service {
3232
if (!this._config || this._config.appId === 'CHANGEIT') {
3333
throw new Error('chat21Config is not defined. Please setup your environment');
3434
}
35-
console.log("INIT new Chat21Client")
35+
// console.log("INIT new Chat21Client")
3636
if (!this.chatClient) {
3737
this.chatClient = new Chat21Client(this._config);
3838
}

0 commit comments

Comments
 (0)