Skip to content

Commit

Permalink
Adds log
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Oct 8, 2024
1 parent ee7d161 commit 314aea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/knowledge-bases/knowledge-bases.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ export class KnowledgeBasesComponent extends PricingBaseComponent implements OnI
width: '600px',
});
dialogRef.afterClosed().subscribe(body => {
this.logger.log('[Modal Add URLS AFTER CLOSED] Dialog body: ', body);
console.log('[Modal Add URLS AFTER CLOSED] Dialog body: ', body);
if (body) {
this.onAddMultiKb(body)
}
Expand All @@ -1454,7 +1454,7 @@ export class KnowledgeBasesComponent extends PricingBaseComponent implements OnI

});
dialogRef.afterClosed().subscribe(body => {
this.logger.log('[Modal IMPORT SITEMAP AFTER CLOSED] body: ', body);
console.log('[Modal IMPORT SITEMAP AFTER CLOSED] body: ', body);
if (body) {
this.onAddMultiKb(body)
}
Expand Down

0 comments on commit 314aea1

Please sign in to comment.