From 155d0a2990ed934ef31fbe83ca73fe97caac601a Mon Sep 17 00:00:00 2001 From: Maik Riechert Date: Fri, 1 Apr 2016 15:15:01 +0100 Subject: [PATCH] remove debug logging --- src/api.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/api.js b/src/api.js index eda5d8d..f0f4a1f 100644 --- a/src/api.js +++ b/src/api.js @@ -119,27 +119,21 @@ export class API { this.isPaged = true this.paging = ld.view this.paging.total = ld.totalItems - - console.log(ld.view) } if (ld.api && ld.api.type === IriTemplate) { this.hasUrlTemplate = true this.urlTemplate = ld.api - console.log('URL template: ' + ld.api.template) let mappings = ld.api.mapping for (let mapping of mappings) { let propId = mapping.property.id for (let prop in URL_PROPS) { if (URL_PROPS[prop] === propId) { - console.log('property recognized: ' + propId + ' (variable: ' + mapping.variable + ')') this.supportedUrlProps.set(propId, mapping.variable) } } } - - console.log(ld.api) } this._createCapabilities()