Make logging consistent
This commit is contained in:
parent
64f6ea509a
commit
98a349724e
1 changed files with 2 additions and 2 deletions
|
@ -648,10 +648,10 @@ void mbpfan()
|
|||
}
|
||||
|
||||
if(verbose) {
|
||||
printf("Old Temp %d: New Temp: %d Fan: %s Speed: %d\n", old_temp, new_temp, fan->label, fan_speed);
|
||||
printf("Old Temp: %d New Temp: %d Fan: %s Speed: %d\n", old_temp, new_temp, fan->label, fan_speed);
|
||||
|
||||
if(daemonize) {
|
||||
syslog(LOG_INFO, "Old Temp %d: New Temp: %d Fan: %s Speed: %d", old_temp, new_temp, fan->label, fan_speed);
|
||||
syslog(LOG_INFO, "Old Temp: %d New Temp: %d Fan: %s Speed: %d", old_temp, new_temp, fan->label, fan_speed);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue