Using Spring Boot, how do I see debug info for Zuul?

Eric Francis picture Eric Francis · Nov 20, 2015 · Viewed 18.7k times · Source

I am trying to use Zuul within my Spring Boot project.

application.properties

server.context-path=/${spring.application.name}
zuul.routes.engine.path=/api/engine/**
zuul.routes.engine.url=${engine.url}

GET requests are working; however, Zuul is not forwarding my POST requests. I'm not seeing any of the debug output for either the GET or POST listed here: How To Use.

How do I enable DEBUG logging mode for Zuul?

Answer

spencergibb picture spencergibb · Nov 20, 2015

Set the property zuul.debug.request=true.