X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fipmi.c;h=f28ac52cbd157d64b44592a2185a959a3150dd6f;hb=fc2993befd2d9d6d9392cf109f033d0d6f421436;hp=22aff82cdfac4f3262b4b752e49b2843f2961f8d;hpb=1f88406aadbfbd3da8f2d7f08220d2734aa286b4;p=collectd.git diff --git a/src/ipmi.c b/src/ipmi.c index 22aff82c..f28ac52c 100644 --- a/src/ipmi.c +++ b/src/ipmi.c @@ -449,9 +449,12 @@ static int sensor_list_add(c_ipmi_instance_t *st, ipmi_sensor_t *sensor) { break; INFO("ipmi plugin: sensor_list_add: Ignore sensor `%s` of `%s`, " - "because I don't know how to handle its type (%#x, %s). " - "If you need this sensor, please file a bug report.", - sensor_name_ptr, st->name, sensor_type, + "because I don't know how to handle its units (%#x, %#x, %#x). " + "Sensor type: (%#x, %s). If you need this sensor, please file " + "a bug report at http://collectd.org/.", + sensor_name_ptr, st->name, ipmi_sensor_get_base_unit(sensor), + ipmi_sensor_get_modifier_unit(sensor), + ipmi_sensor_get_rate_unit(sensor), sensor_type, ipmi_sensor_get_sensor_type_string(sensor)); return -1; }