In my angular app i am calling a service and fetching the data, i need to add a console log once the results are fetched. where can i add console log?
this.searchTerm.asObservable()
.debounceTime(300)
.distinctUntilChanged()
.switchMap(term => this.doFind(term))
.subscribe(data => this.results = data
, error => {
this.errorMessage = error;
});