From 2b212979ddc6c70d16d9f77104404b8890bf022a Mon Sep 17 00:00:00 2001 From: John Balasis <15860451+jBalasis@users.noreply.github.com> Date: Wed, 15 Jun 2022 09:52:10 +0000 Subject: [PATCH] removed some console logs --- src/app/services/repository.service.ts | 1 - .../sources-forms/datasource-update-form.component.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/app/services/repository.service.ts b/src/app/services/repository.service.ts index 869c41987..d3a52c4e8 100755 --- a/src/app/services/repository.service.ts +++ b/src/app/services/repository.service.ts @@ -162,7 +162,6 @@ export class RepositoryService { } getDatasourceClasses(mode: string): Observable> { - console.log('mode: ' + mode); const url = `${this.apiUrl}getDatasourceClasses/${mode}`; console.log(`knocking on: ${url}`); return this.httpClient.get>(url, headerOptions); diff --git a/src/app/shared/reusablecomponents/sources-forms/datasource-update-form.component.ts b/src/app/shared/reusablecomponents/sources-forms/datasource-update-form.component.ts index 168560b31..6429f29da 100755 --- a/src/app/shared/reusablecomponents/sources-forms/datasource-update-form.component.ts +++ b/src/app/shared/reusablecomponents/sources-forms/datasource-update-form.component.ts @@ -172,7 +172,6 @@ export class DatasourceUpdateFormComponent implements OnInit { getDatasourceClasses() { // FIXME: Use eoscDatasourceType when we support the new model - console.log('I update with mode: ' + this.mode); this.repoService.getDatasourceClasses(this.mode).subscribe( classes => this.datasourceClasses = classes, error => {