remove noisy log calls
This commit is contained in:
13
rpc.js
13
rpc.js
@@ -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':
|
||||||
|
|||||||
Reference in New Issue
Block a user