Removed remaining ctime

This commit is contained in:
Domen Tabernik 2019-03-08 21:30:39 +00:00
parent 111c12807a
commit b127f69531
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ def superfans_gpu_controller(fan_settings, FAN_INCREASED_MIN_TIME=120, sleep_sec
print('Using settings:')
for k in sorted(fan_settings.keys()):
print('\t%d C = %d ' % (k, fan_settings[k]) + "%")
print(time.ctime() + ':')
print('\n')
try:
FAN_MEMBERS = superfans.FAN_ZONES_MEMBERS[superfans.FAN_ZONE_SYS1] + \
@ -114,7 +114,7 @@ def superfans_gpu_controller(fan_settings, FAN_INCREASED_MIN_TIME=120, sleep_sec
print('\tCurrent GPU measurements: %s' % ','.join(map(str,GPU_temp)))
print('\tMoving average GPU measurements: %s' % ','.join(map(str,mean_GPU_temp)))
print('\tTarget difference: SYS1 fan = %f; SYS2 fan = %f' % (max(diff_sys1_fan), max(diff_sys2_fan)))
print(time.ctime() + ':')
print('\n')
previous_target_fan = target_fan