Jetty Runner IDEA Сообщество Ведение журнала - PullRequest
0 голосов
/ 06 декабря 2018

Я работаю над проектом с использованием Intellij IDEA Community, поэтому я использую Jetty Runner для развертывания моего веб-приложения на локальном хосте, все работает нормально, но я хочу настроить журналы, касающиеся Jetty, при запуске сервера я вижу такой видlog:

14:50:20.516 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - isSystemResource==false org.springframework.expression.spel.ast.OpDec jar:file:/C:/Mario/development/spring/spring5/workspace/springsecurity/chapter02/chapter02.00-calendar/build/exploded/WEB-INF/lib/spring-expression-4.3.11.RELEASE.jar!/org/springframework/expression/spel/ast/OpDec.class 14:50:20.516 [main] DEBUG o.e.jetty.webapp.WebAppClassLoader - WAP webapp loaded class org.springframework.expression.spel.ast.OpDec 14:50:20.516 [main] DEBUG o.eclipse.jetty.webapp.WebAppContext - isSystemResource==false org.springframework.expression.spel.ast.OperatorNot jar:file:/C:/Mario/development/spring/spring5/workspace/springsecurity/chapter02/chapter02.00-calendar/build/exploded/WEB-INF/lib/spring-expression-4.3.11.RELEASE.jar!/org/springframework/expression/spel/ast/OperatorNot.class 14:50:20.517 [main] DEBUG o.e.jetty.webapp.WebAppClassLoader - WAP webapp loaded class org.springframework.expression.spel.ast.OperatorNot 1

Я хочу изменить гранулярность с DEBUG на информацию, касающуюся сервера Jetty.

1 Ответ

0 голосов
/ 07 декабря 2018

Поместите файл jetty-logging.properties в свою папку ресурсов и настройте там регистрацию:

# Configure for System.err output
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog
# Configure StdErrLog to log all jetty namespace at default of WARN or above
org.eclipse.jetty.LEVEL=INFO

Подробнее здесь: https://www.eclipse.org/jetty/documentation/9.4.x/configuring-logging.html

...