Repository: olingo-odata4 Updated Branches: refs/heads/master b157e26ca -> fe8df96fe
Enable simple logging on FIT Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/811f0bfc Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/811f0bfc Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/811f0bfc Branch: refs/heads/master Commit: 811f0bfcc7defd0d93eb3d07537247494047933e Parents: b157e26 Author: Francesco Chicchiriccò <[email protected]> Authored: Thu Apr 17 16:27:54 2014 +0200 Committer: Francesco Chicchiriccò <[email protected]> Committed: Thu Apr 17 16:27:54 2014 +0200 ---------------------------------------------------------------------- fit/pom.xml | 9 +++++++-- fit/src/main/resources/simplelogger.properties | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/811f0bfc/fit/pom.xml ---------------------------------------------------------------------- diff --git a/fit/pom.xml b/fit/pom.xml index e6030f5..b7e4043 100644 --- a/fit/pom.xml +++ b/fit/pom.xml @@ -51,7 +51,7 @@ </exclusion> </exclusions> </dependency> - + <!-- Stax --> <dependency> <groupId>stax</groupId> @@ -95,7 +95,12 @@ <artifactId>commons-logging</artifactId> <scope>provided</scope> </dependency> - + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <scope>compile</scope> + </dependency> + <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2</artifactId> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/811f0bfc/fit/src/main/resources/simplelogger.properties ---------------------------------------------------------------------- diff --git a/fit/src/main/resources/simplelogger.properties b/fit/src/main/resources/simplelogger.properties new file mode 100644 index 0000000..fcde843 --- /dev/null +++ b/fit/src/main/resources/simplelogger.properties @@ -0,0 +1,19 @@ +# +# 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. +# +org.slf4j.simpleLogger.defaultLogLevel=debug
