From d3e2fb4e815ce6df288da24ef80350b5452167b7 Mon Sep 17 00:00:00 2001 From: Carlos Purificacao Date: Mon, 28 Mar 2016 14:07:00 -0300 Subject: [PATCH] Removed console logs from people component --- src/app/layout/blocks/people-block/people-block.component.ts | 2 -- 1 file changed, 0 insertions(+), 2 deletions(-) diff --git a/src/app/layout/blocks/people-block/people-block.component.ts b/src/app/layout/blocks/people-block/people-block.component.ts index 7870e00..af2cfc1 100644 --- a/src/app/layout/blocks/people-block/people-block.component.ts +++ b/src/app/layout/blocks/people-block/people-block.component.ts @@ -14,12 +14,10 @@ export class PeopleBlockComponent { people: noosfero.Person[] = []; constructor(private environmentService: EnvironmentService) { - console.debug("Created PeopleBlockComponent"); } ngOnInit() { this.environmentService.getEnvironmentPeople({ limit: '6' }).then((people: noosfero.Person[]) => { - console.debug("People returned in PeopleBlockComponent: ", people); this.people = people; }); } -- libgit2 0.21.2