1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2026-01-03 23:22:30 +03:00

Remove console logs

This commit is contained in:
Kegan Dougal
2015-03-05 10:05:56 +00:00
parent e971b9b92f
commit ba871cbf3e

View File

@@ -538,8 +538,6 @@ var init = function(exports){
},
_request: function(callback, method, uri, params, data) {
console.log(" => %s", uri);
console.log(" %s", JSON.stringify(data));
if (callback !== undefined && !isFunction(callback)) {
throw Error("Expected callback to be a function");
}
@@ -607,4 +605,4 @@ if (typeof exports === 'undefined') {
}
else {
init(exports);
}
}