remove noisy log calls

pull/1/head
ansuz 8 years ago
parent efedfe0667
commit 708d5ae35f

@ -872,28 +872,17 @@ RPC.create = function (config /*:typeof(ConfigType)*/, cb /*:(?Error, ?Function)
var blobStagingPath = paths.staging = keyOrDefaultString('blobStagingPath', './blobstage'); var blobStagingPath = paths.staging = keyOrDefaultString('blobStagingPath', './blobstage');
var isUnauthenticateMessage = function (msg) { var isUnauthenticateMessage = function (msg) {
var unAuthed = msg && msg.length === 2 && isUnauthenticatedCall(msg[0]); return msg && msg.length === 2 && isUnauthenticatedCall(msg[0]);
if (unAuthed) {
console.log(msg);
console.log('is unauthenticated call!');
return unAuthed;
} else {
return false;
}
}; };
var handleUnauthenticatedMessage = function (msg, respond) { var handleUnauthenticatedMessage = function (msg, respond) {
console.log(msg);
switch (msg[0]) { switch (msg[0]) {
case 'GET_FILE_SIZE': case 'GET_FILE_SIZE':
console.log("Get file size");
return void getFileSize(Env, msg[1], function (e, size) { return void getFileSize(Env, msg[1], function (e, size) {
if (e) { if (e) {
console.error(e); console.error(e);
} }
WARN(e, msg[1]); WARN(e, msg[1]);
console.log(size);
respond(e, [null, size, null]); respond(e, [null, size, null]);
}); });
case 'GET_MULTIPLE_FILE_SIZE': case 'GET_MULTIPLE_FILE_SIZE':

Loading…
Cancel
Save