How to debug? InfluxDB binding not working with new added items

Hoi zäme,

I only wanted to add another item to my influxdb.persist but it does not work. I can see that the item is receiving values (in visual studio code in the openhab items sidebar) but these values do not make it to influxDB. I find no error in the log and I really don’t know what and how to debug further. I already got: log:set info org.openhab.persistence.influxdb … any ideas?

Strategies {
    everyMinute : "0 * * * * ?"
    everyHour   : "0 0 * * * ?"
    everyDay    : "0 0 0 * * ?"
    // default = everyChange
}


Items {
    FBSocTemp                           : strategy = everyChange
}

Number FBSocTemp             "Soc Temp [%d]"            (gReadings)   {mqtt="<[fb:bot/NotOfInterest/status:state:JSONPATH($.informational_settings.soc_temp):.*]"} 

Any idea how to debug further?

You should start with changing that to TRACE instead of INFO.

Hey @namraccr thanks so much for your help! I mixed the debug levels up, I will change it to TRACE :wink:

However rebooting seemed to solve the issue. But despite the fact that the issue is solved now, my question was generally how could I debug such a situation in future and I guess the only way is the logs from the specific binding, being in TRACE mode, right?