From d4735381a46da392791e045556be0c92eb5f4a13 Mon Sep 17 00:00:00 2001 From: Bart van den Eijnden Date: Mon, 27 Oct 2014 15:20:52 +0100 Subject: [PATCH] make it a warning instead of an error since it's non-fatal --- src/wpsclient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wpsclient.js b/src/wpsclient.js index 2e32308..ca4277f 100644 --- a/src/wpsclient.js +++ b/src/wpsclient.js @@ -238,7 +238,7 @@ wps.process.prototype.execute = function(options) { result = me.formats[i].format.readFeatures(this.responseText); } catch(e) { if (window.console) { - window.console.error(e); + window.console.warn(e); } result = this.responseText; }