-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #4572 - Fixing osgi testing and org.slf4j
Signed-off-by: Joakim Erdfelt <[email protected]>
- Loading branch information
Showing
4 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
jetty-osgi/test-jetty-osgi/src/test/resources/log4j.properties
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | ||
<log4j:configuration debug="false" xmlns:log4j='http://jakarta.apache.org/log4j/'> | ||
|
||
<appender name="console" class="org.apache.log4j.ConsoleAppender"> | ||
<layout class="org.apache.log4j.PatternLayout"> | ||
<param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss} [%p] :%t: (%c) - %m%n" /> | ||
</layout> | ||
</appender> | ||
|
||
<logger name="shaded.org.eclipse.aether"> | ||
<level value="WARN" /> | ||
</logger> | ||
<logger name="shaded.org.apache.http"> | ||
<level value="WARN" /> | ||
</logger> | ||
<logger name="shaded.org.ops4j"> | ||
<level value="WARN" /> | ||
</logger> | ||
|
||
<logger name="org.ops4j"> | ||
<level value="INFO" /> | ||
</logger> | ||
<root> | ||
<level value="DEBUG" /> | ||
<appender-ref ref="console" /> | ||
</root> | ||
|
||
</log4j:configuration> |