Loglevel fo jython rules

Hi all,
what loglevel or what package do I have to set in in karaf console to get the log messages of my jython scripts in my logfiles?
It was working, but how to get it back?

from core.log import logging, LOG_PREFIX


RULE_NAME="TEST_RULE"
log=logging.getLogger(LOG_PREFIX+"."+RULE_NAME)
log.info("Info Level")
log.debug("Debug Level")

Your logging config may have changed. Do step 3 at Installation — openHAB Helper Libraries documentation again.

1 Like

Thank you. Works for me