Repository: kafka Updated Branches: refs/heads/trunk fc58ac594 -> 5d9563d95
MINOR: Switch ZK client logging to INFO Author: Ismael Juma <[email protected]> Reviewers: Jun Rao <[email protected]> Closes #3409 from ijuma/tweak-log-config Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/5d9563d9 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/5d9563d9 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/5d9563d9 Branch: refs/heads/trunk Commit: 5d9563d95fb09903d13b7135e1136081feb4fc4b Parents: fc58ac5 Author: Ismael Juma <[email protected]> Authored: Thu Jun 22 16:56:06 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Thu Jun 22 16:56:06 2017 +0100 ---------------------------------------------------------------------- config/log4j.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/5d9563d9/config/log4j.properties ---------------------------------------------------------------------- diff --git a/config/log4j.properties b/config/log4j.properties index 00d693e..0a1ec4f 100644 --- a/config/log4j.properties +++ b/config/log4j.properties @@ -57,9 +57,9 @@ log4j.appender.authorizerAppender.File=${kafka.logs.dir}/kafka-authorizer.log log4j.appender.authorizerAppender.layout=org.apache.log4j.PatternLayout log4j.appender.authorizerAppender.layout.ConversionPattern=[%d] %p %m (%c)%n -# ZkClient is verbose, so set it to WARN by default -log4j.logger.org.I0Itec.zkclient.ZkClient=WARN -log4j.logger.org.apache.zookeeper=WARN +# Change the two lines below to adjust ZK client logging +log4j.logger.org.I0Itec.zkclient.ZkClient=INFO +log4j.logger.org.apache.zookeeper=INFO # Change the two lines below to adjust the general broker logging level (output to server.log and stdout) log4j.logger.kafka=INFO
