Composer: JSON sent to getWebService.jsp

Hi guys,
Dummy question, how can I see at logs the JSON being sent to the WEB Service block without a sniffer?
I guess it is printed at some logs but can’t find them…block is already as DEBUG at logging settings but no impact at what I need as I guess it as the JSP itself
Any idea?

Hi Cav,

Increasing logging level should help. Check log4j.xml file in Tomcat’s lib folder.

There is knowledge base article on Genesys Support site available as well that details required changes.

René

I was messing with it but no luck yet.
Will search the KB again to try to find it
Thanks

Enviado de meu E6633 usando o Tapatalk

I think René mentioned this article https://genesyspartner.force.com/customercare/pkb_Home?id=kA00B000000DuzESAS&l=en_US&fs=Search&pn=1

<!-- These are the Composer provided class loggers -->
  <logger name="getWebRequest">
    <level value="DEBUG"/>
    <appender-ref ref="logfile"/>
  </logger>

  <logger name="getWebService">
    <level value="DEBUG"/>
    <appender-ref ref="logfile"/>
  </logger>

Of course, this applies only if you use Tomcat as the web container.

Thanks! Will apply and test