[tests] suppress unnecessary log output
Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/dc7786f3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/dc7786f3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/dc7786f3 Branch: refs/heads/master Commit: dc7786f30c975df96e2992f803fe8a1964ecbb38 Parents: c6630b9 Author: Maximilian Michels <[email protected]> Authored: Thu Mar 3 14:57:06 2016 +0100 Committer: Davor Bonaci <[email protected]> Committed: Fri Mar 4 10:04:23 2016 -0800 ---------------------------------------------------------------------- runners/flink/pom.xml | 6 +++++ .../src/test/resources/log4j-test.properties | 27 ++++++++++++++++++++ 2 files changed, 33 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/dc7786f3/runners/flink/pom.xml ---------------------------------------------------------------------- diff --git a/runners/flink/pom.xml b/runners/flink/pom.xml index 0234ddd..6b12f2d 100644 --- a/runners/flink/pom.xml +++ b/runners/flink/pom.xml @@ -174,6 +174,9 @@ </goals> </execution> </executions> + <configuration> + <argLine>-Dlog4j.configuration=log4j-test.properties -XX:-UseGCOverheadLimit</argLine> + </configuration> </plugin> <!-- Unit Tests --> @@ -181,6 +184,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version><!--$NO-MVN-MAN-VER$--> + <configuration> + <argLine>-Dlog4j.configuration=log4j-test.properties -XX:-UseGCOverheadLimit</argLine> + </configuration> </plugin> <!-- Eclipse Integration --> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/dc7786f3/runners/flink/src/test/resources/log4j-test.properties ---------------------------------------------------------------------- diff --git a/runners/flink/src/test/resources/log4j-test.properties b/runners/flink/src/test/resources/log4j-test.properties new file mode 100644 index 0000000..4c74d85 --- /dev/null +++ b/runners/flink/src/test/resources/log4j-test.properties @@ -0,0 +1,27 @@ +################################################################################ +# 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. +################################################################################ + +# Set root logger level to OFF to not flood build logs +# set manually to INFO for debugging purposes +log4j.rootLogger=OFF, testlogger + +# A1 is set to be a ConsoleAppender. +log4j.appender.testlogger=org.apache.log4j.ConsoleAppender +log4j.appender.testlogger.target = System.err +log4j.appender.testlogger.layout=org.apache.log4j.PatternLayout +log4j.appender.testlogger.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
