Skip to content

Commit

Permalink
make load failure in SeqFeatureStore/NCList log errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Mar 13, 2012
1 parent 22973d1 commit 15d3469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/SeqFeatureStore/NCList.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ SeqFeatureStore.NCList.prototype.load = function() {
dojo.xhrGet({ url: url,
handleAs: "json",
load: function(o) { that.loadSuccess(o, url); },
error: function(o) { that.loadFail(o, url); }
error: function(e) { console.error(''+e); that.loadFail(e, url); }
});
};

Expand Down

0 comments on commit 15d3469

Please sign in to comment.