Skip to content

Commit

Permalink
removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Apr 13, 2018
1 parent 509933f commit 79cbd43
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 79cbd43

Please sign in to comment.