1

I would like to know if there is a way to enable Camunda debug? As I can only see the logs related to bpmn file deploy, as well as errors that could occur, in catalina.out file.

My point is, I would like to debug the Rest API requests and responses that I make, in order to see all steps that are being made, from Camunda Modeler (where bpmn file is deployed to the engine) to Cockpit (where the process-definition is afterwards started)? I’m using Tomcat as server.

camunda_user
  • 33
  • 1
  • 5
  • There is nothing special about debugging camunda .. it is just another java lib running in your tomcat ... if you are not familiar with debugging tomcat: https://blog.trifork.com/2014/07/14/how-to-remotely-debug-application-running-on-tomcat-from-within-intellij-idea/ – Jan Galinski Mar 22 '20 at 11:48

1 Answers1

0

You can enable logging of basically everything done by engine by adjusting logback properties: described here

Akka Jaworek
  • 1,970
  • 4
  • 21
  • 47