diff -r 3c4c6d5e4b8d -r e833bbd5e733 thermferm/thermferm.c --- a/thermferm/thermferm.c Sat Jul 14 21:36:08 2018 +0200 +++ b/thermferm/thermferm.c Sun Jul 15 12:05:16 2018 +0200 @@ -1943,10 +1943,11 @@ snprintf(room_temp, 39, "%.3f", Config.temp_value / 1000.0); } - snprintf(buf, 1023, "%s,%.3f,%.3f,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s", + snprintf(buf, 1023, "%s,%.3f,%.3f,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%.3f", UNITMODE[unit->mode], unit->air_temperature / 1000.0, unit->beer_temperature / 1000.0, - target_lo, heater, cooler, fan, door, use_heater, use_cooler, use_fan, room_temp, target_hi); + target_lo, heater, cooler, fan, door, use_heater, use_cooler, use_fan, room_temp, target_hi, + unit->chiller_temperature / 1000.0); filename = xstrcpy(unit->name); filename = xstrcat(filename, (char *)".log"); logger(filename, buf);