Repository: any23 Updated Branches: refs/heads/master d67bdff9a -> 9aece2a7c
Fix ANY23-305 , Fix ANY23-301 - add external file at conf/log4.properties Signed-off-by:Jacek Grzebyta <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/any23/repo Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/9aece2a7 Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/9aece2a7 Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/9aece2a7 Branch: refs/heads/master Commit: 9aece2a7c1bf9e70d1df7e1014b6a7eb101bb10c Parents: d67bdff Author: Jacek Grzebyta <[email protected]> Authored: Mon Mar 27 19:31:25 2017 +0100 Committer: Jacek Grzebyta <[email protected]> Committed: Mon Mar 27 19:31:25 2017 +0100 ---------------------------------------------------------------------- cli/src/test/resources/log4j.properties | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/any23/blob/9aece2a7/cli/src/test/resources/log4j.properties ---------------------------------------------------------------------- diff --git a/cli/src/test/resources/log4j.properties b/cli/src/test/resources/log4j.properties new file mode 100644 index 0000000..1918a4b --- /dev/null +++ b/cli/src/test/resources/log4j.properties @@ -0,0 +1,24 @@ +# Copyright 2017 The Apache Software Foundation. +# +# Licensed 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=INFO, A1 + +# A1 is set to be a ConsoleAppender. +log4j.appender.A1=org.apache.log4j.ConsoleAppender +log4j.appender.A1.Target=System.err + +# A1 uses PatternLayout. +log4j.appender.A1.layout=org.apache.log4j.PatternLayout +log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n +
