-
Notifications
You must be signed in to change notification settings - Fork 2
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 #15 from EMCECS/feature-update-object-client
updated all dependencies and plugins
- Loading branch information
Showing
5 changed files
with
107 additions
and
47 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
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,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Configuration> | ||
<Appenders> | ||
<Console name="mainAppender" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%-10r %-5p [%-15t] %c{1}: %m%n"/> | ||
</Console> | ||
</Appenders> | ||
<Loggers> | ||
<!-- Don't go above INFO for REST classes (takes up too much log space) | ||
comment these out if you want full debug logs (will be huge) | ||
WARNING: at debug level, if the following lines are not active, | ||
object *data* will be logged in byte-hex ([0x9a]...) --> | ||
<Logger name="org.apache.http.wire" additivity="false"> | ||
<AppenderRef ref="mainAppender" level="info"/> | ||
</Logger> | ||
<Logger name="com.sun.jersey.api.client" additivity="false"> | ||
<AppenderRef ref="mainAppender" level="info"/> | ||
</Logger> | ||
<Logger name="com.amazonaws.request" additivity="false"> | ||
<AppenderRef ref="mainAppender" level="info"/> | ||
</Logger> | ||
|
||
<!-- | ||
For request debugging | ||
--> | ||
<!-- <Logger name="org.apache.http.headers" level="debug"/>--> | ||
|
||
<Root level="info"> | ||
<AppenderRef ref="mainAppender"/> | ||
</Root> | ||
</Loggers> | ||
</Configuration> |