Updated Branches: refs/heads/trunk bc5d2908f -> 3369b3432
FLUME-1795: Flume thrift legacy source does not have proper logging configured (Venkat Ranganathan via Brock Noland) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/3369b343 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/3369b343 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/3369b343 Branch: refs/heads/trunk Commit: 3369b34320175fc9b1132ef3e1ac8551ae55492a Parents: bc5d290 Author: Brock Noland <[email protected]> Authored: Tue Dec 18 13:14:53 2012 -0600 Committer: Brock Noland <[email protected]> Committed: Tue Dec 18 13:14:53 2012 -0600 ---------------------------------------------------------------------- .../src/test/resources/log4j.properties | 25 +++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/3369b343/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties ---------------------------------------------------------------------- diff --git a/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties b/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties new file mode 100644 index 0000000..9036aca --- /dev/null +++ b/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties @@ -0,0 +1,25 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + +log4j.rootLogger = DEBUG, out + +log4j.appender.out = org.apache.log4j.ConsoleAppender +log4j.appender.out.layout = org.apache.log4j.PatternLayout +log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n + +log4j.logger.org.apache.flume = DEBUG
