How to log http soap/rest requests

I have defined process which is invoking soap and rest services both using connector implementation.
However, I’m interested to know how to log requests before/after execution of service to debug in case of failure.

Thanks in advance.

-Pramod

Hi @pramod_Rajane,

if you run the Camunda engine from the spring-boot-starter, these logging levels provide more insights:

logging:
  level:
    org.camunda.bpm.connect: DEBUG
    org.apache.http: DEBUG
    connectjar.org.apache.http: DEBUG

You may set the apache.http levels to more specific levels as they provide a lot of output.

Hope this helps, Ingo

Thanks @Ingo_Richtsmeier, This worked :grinning: