remove spurious console.log

This commit is contained in:
Girish Ramakrishnan
2017-03-24 14:47:04 -07:00
parent 76d234d0bf
commit b44f0b78a1

View File

@@ -1004,8 +1004,6 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
var totalMemory = roundedMemory * 1.2; // cloudron-system-setup.sh creates equal amount of swap. 1.2 factor is arbitrary
var available = (totalMemory || 0) - used;
console.log(needed, used, roundedMemory, totalMemory, available);
return (available - needed) >= 0;
};