Skip to content
Snippets Groups Projects
Commit 69f48464 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

55946: Removed console log

parent f2bfdbcf
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,6 @@ export class ItemCollectionMapperComponent implements OnInit {
*/
private showNotifications(responses$: Observable<RestResponse[]>, messagePrefix: string) {
responses$.subscribe((responses: RestResponse[]) => {
console.log('message ' + messagePrefix + ' for ' + responses.length + ' responses...');
const successful = responses.filter((response: RestResponse) => response.isSuccessful);
const unsuccessful = responses.filter((response: RestResponse) => !response.isSuccessful);
if (successful.length > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment