removed some console logs

This commit is contained in:
John Balasis 2022-06-15 09:52:10 +00:00
parent 4c0d2e560d
commit 2b212979dd
2 changed files with 0 additions and 2 deletions

View File

@ -162,7 +162,6 @@ export class RepositoryService {
}
getDatasourceClasses(mode: string): Observable<Map<string, string>> {
console.log('mode: ' + mode);
const url = `${this.apiUrl}getDatasourceClasses/${mode}`;
console.log(`knocking on: ${url}`);
return this.httpClient.get<Map<string, string>>(url, headerOptions);

View File

@ -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 => {