Skip to content

Commit

Permalink
Merged in bugfix/console (pull request #57)
Browse files Browse the repository at this point in the history
removed console logs

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
rmathis committed Apr 13, 2018
2 parents 509933f + 79cbd43 commit 92d24f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion ui/src/app/dashboard/effect/search.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class SearchEffects {
this.store.select(fromCollections.getAllProviders),
this.store.select(fromCollections.getAllFilters),
(o: any[], p: MetadataProvider[], f: MetadataFilter[]): Array<MetadataEntity> => {
console.log(o, p, f);
return o.concat(
f.map(filter => new Filter(filter)),
p.map(provider => new Provider(provider))
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/domain/service/entity-descriptor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class EntityDescriptorService {

save(provider: MetadataProvider): Observable<MetadataProvider> {
if (!environment.production) {
console.log(JSON.stringify(provider));
// console.log(JSON.stringify(provider));
}
return this.http.post<MetadataProvider>(`${this.base}${this.endpoint}`, provider);
}
Expand Down

0 comments on commit 92d24f1

Please sign in to comment.