Hi!
I'm working on a maven app with Apache NiFi and IntelliJ.
I haven't found any problems to debug my processor, although it hasn't been so easy with my services.
I've edited NiFi logback.xml and bootstrap.conf files to that purpose but it wasn't useful for debugging my Akka services.
Below you'll find the code lines related to this fact in my logback.xml file:
<logger name="org.apache.nifi" level="INFO"/>
<logger name="org.apache.nifi.akka" level="DEBUG"/>
<logger name="org.apache.nifi.processors" level="DEBUG"/>
<logger name="org.apache.nifi.processors.standard.LogAttribute" level="INFO"/>
<logger name="org.apache.nifi.processors.standard.LogMessage" level="INFO"/>
<logger name="org.apache.nifi.controller.repository.StandardProcessSession" level="WARN" />
line 2 is not working:
<logger name="org.apache.nifi.akka" level="DEBUG"/>
Does anyone know how to debug akka in intelliJ for Apache Nifi?
Thanks!