Show Prime95 final temps in result screen
This commit is contained in:
parent
0bab107e24
commit
0ea523a2cf
1 changed files with 8 additions and 0 deletions
|
|
@ -503,6 +503,14 @@ def show_results():
|
||||||
print_error(' {}'.format(line))
|
print_error(' {}'.format(line))
|
||||||
else:
|
else:
|
||||||
print_standard(' {}'.format(line))
|
print_standard(' {}'.format(line))
|
||||||
|
print_info('Final temps')
|
||||||
|
print_log(' See Final Temps.log')
|
||||||
|
with open('{}/Final Temps.out'.format(global_vars['LogDir']), 'r') as f:
|
||||||
|
for line in f.readlines():
|
||||||
|
if re.search(r'^\s*$', line.strip()):
|
||||||
|
# Stop after coretemps (which should be first)
|
||||||
|
break
|
||||||
|
print(' {}'.format(line.strip()))
|
||||||
print_standard(' ')
|
print_standard(' ')
|
||||||
|
|
||||||
# NVMe/SMART / badblocks
|
# NVMe/SMART / badblocks
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue