This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from snieguu/master
Version 2.125
- Loading branch information
Showing
3 changed files
with
23 additions
and
19 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 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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Configuration> | ||
<Appenders> | ||
<Console name="CONSOLE" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} [%t] %-5p %c %x - %m%n" /> | ||
</Console> | ||
<File name="DEBUG_FILE" fileName="remotedevice-debug.log" append="false"> | ||
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} [%t] %-5p %c %x - %m%n" /> | ||
</File> | ||
</Appenders> | ||
<Loggers> | ||
<Logger name="com.testdroid" level="DEBUG"/> | ||
<Logger name="org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler" level="WARN"/> | ||
<Root level="ALL"> | ||
<AppenderRef ref="CONSOLE" level="INFO"/> | ||
<AppenderRef ref="DEBUG_FILE"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |