openhab-helper-libraries
openhab-helper-libraries copied to clipboard
core.log CRITICAL should not be TRACE
core.log
links the Python logging
level CRITICAL
to openHAB level TRACE
but this is not correct. The CRITICAL
level is above ERROR
and TRACE
is below DEBUG
.
The TRACE
level would need to be added to the Python logger as it is not built in.
https://github.com/openhab-scripters/openhab-helper-libraries/blob/932894b11eb15254bb6391d4dccff0e04a22d9c5/Core/automation/lib/python/core/log.py#L23-L24