log removed

This commit is contained in:
Marie Verdonck
2020-02-21 17:10:03 +01:00
parent 781a558458
commit 525c333e09

View File

@@ -237,7 +237,6 @@ export abstract class DataService<T extends CacheableObject> {
* @param linksToFollow List of {@link FollowLinkConfig} that indicate which {@link HALLink}s should be automatically resolved * @param linksToFollow List of {@link FollowLinkConfig} that indicate which {@link HALLink}s should be automatically resolved
*/ */
findById(id: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> { findById(id: string, ...linksToFollow: Array<FollowLinkConfig<T>>): Observable<RemoteData<T>> {
console.log('findById');
const hrefObs = this.halService.getEndpoint(this.linkPath).pipe( const hrefObs = this.halService.getEndpoint(this.linkPath).pipe(
map((endpoint: string) => this.getIDHref(endpoint, encodeURIComponent(id), ...linksToFollow))); map((endpoint: string) => this.getIDHref(endpoint, encodeURIComponent(id), ...linksToFollow)));