Skip to content

Commit

Permalink
use log4j2-test.xml (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Oct 6, 2023
1 parent ae33464 commit f660cd8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 11 deletions.
11 changes: 0 additions & 11 deletions zuul-integration-test/src/test/resources/log4j2-test.properties

This file was deleted.

31 changes: 31 additions & 0 deletions zuul-integration-test/src/test/resources/log4j2-test.xml
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2023 Netflix, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<Configuration status="warn">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Root level="INFO">
<AppenderRef ref="Console"/>
</Root>
<Logger name="org.apache" level="WARN"/>
<Logger name="org.eclipse" level="WARN"/>
</Loggers>
</Configuration>

0 comments on commit f660cd8

Please sign in to comment.