Skip to content

Commit

Permalink
reduce java logging (#2659)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimexist committed Apr 8, 2023
1 parent cb60265 commit c82d0c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -275,7 +275,6 @@ public void run() {
}

private void logException(Exception x) {
LOGGER.debug("Error processing request", x);
// We'll usually receive RuntimeException types here
// Need to unwrap to ascertain real causing exception before we choose to ignore
// Ignoring err-logging all transport-level/type exceptions and SocketExceptions
Expand Down
2 changes: 1 addition & 1 deletion lib/java/src/test/resources/log4j.properties
@@ -1,5 +1,5 @@
# log4j configuration used during build and unit tests
log4j.rootLogger=debug,stdout
log4j.rootLogger=warn,stdout
log4j.threshold=ALL
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
Expand Down

0 comments on commit c82d0c2

Please sign in to comment.