Change repetitive prints from DEBUG to TRACE

This commit is contained in:
Jeremy Soller
2021-06-10 09:12:34 -06:00
committed by Jeremy Soller
parent 913b0dfc44
commit 90057df94f
4 changed files with 7 additions and 7 deletions

View File

@ -180,6 +180,6 @@ uint8_t peci_get_fan_duty(void) {
duty = fan_cooldown(&FAN, duty);
}
DEBUG("PECI temp=%d\n", peci_temp);
TRACE("PECI temp=%d\n", peci_temp);
return duty;
}