Skip to content

Commit

Permalink
make it a warning instead of an error since it's non-fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart van den Eijnden committed Oct 27, 2014
1 parent baf500a commit d473538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wpsclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d473538

Please sign in to comment.