diff --git a/neat/locals/manager.py b/neat/locals/manager.py index 5c3d57c..b9f9e48 100644 --- a/neat/locals/manager.py +++ b/neat/locals/manager.py @@ -407,7 +407,4 @@ def vm_mhz_to_percentage(vms, physical_cpu_mhz): :rtype: list(float) """ data = itertools.izip_longest(*vms.values(), fillvalue=0) - log.debug('physical_cpu_mhz: ' + str(physical_cpu_mhz)) - log.debug('sum_mhz: ' + str([float(sum(x)) for x in data])) - log.debug('host_cpu: ' + str([float(sum(x)) / physical_cpu_mhz for x in data])) return [float(sum(x)) / physical_cpu_mhz for x in data] diff --git a/neat/locals/overload/trivial.py b/neat/locals/overload/trivial.py index 75d9726..410d84d 100644 --- a/neat/locals/overload/trivial.py +++ b/neat/locals/overload/trivial.py @@ -75,8 +75,6 @@ def threshold(threshold, utilization): :return: The decision of the algorithm. :rtype: bool """ - log.debug('Utilization: ' + str(utilization[-1])) - log.debug('Threshold: ' + str(threshold)) if utilization: return utilization[-1] > threshold return False