load stuff

This commit is contained in:
William Mantly 2016-04-25 15:42:07 -04:00
parent 6acc3fba21
commit d452250126

View File

@ -175,7 +175,7 @@ router.post('/run/:ip?', function doRun(req, res, next){
var startAll = function(){ var startAll = function(){
getFreeMem(function(freeMem){ getFreeMem(function(freeMem){
var usedMem = Math.round((freeMem/totalMem)*100); var usedMem = Math.round((freeMem/totalMem)*100);
console.log(usedMem); console.log('freeMem:', freeMem, 'totalmem', totalMem, 'usedMem:', usedMem);
}); });
} }