How to configure logger to debug level when using jetty-maven-plugin?

185 views Asked by At

I would like to see the Spring Security DEBUG log running on my Web Servlet app.

Here is my POM.xml config.

<plugin>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>9.4.38.v20210224</version>
    <configuration>
        <stopPort>9966</stopPort>
        <stopKey>jetty-stop</stopKey>
    </configuration>
</plugin>

How can I configure this?

0

There are 0 answers