Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Oct 15, 2024
1 parent c09dd24 commit d08a7a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ export class AppComponent implements OnInit {

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/chat21-core/providers/mqtt/chat-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class Chat21Service {
if (!this._config || this._config.appId === 'CHANGEIT') {
throw new Error('chat21Config is not defined. Please setup your environment');
}
console.log("INIT new Chat21Client")
// console.log("INIT new Chat21Client")
if (!this.chatClient) {
this.chatClient = new Chat21Client(this._config);
}
Expand Down

0 comments on commit d08a7a5

Please sign in to comment.