ckrabbit.oak-run.1.66.0.source-code.logback.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <configuration> <appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender"> <target>System.err</target> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <!-- Disable warnings caused by JCR-3671 --> <logger name="org.apache.jackrabbit.core.config.ConfigurationErrorHandler" level="ERROR"/> <!-- Display info messages from the benchmark suite --> <logger name="org.apache.jackrabbit.oak.benchmark" level="INFO"/> <!-- Display info messages from the LastRevRecoveryAgent--> <logger name="org.apache.jackrabbit.oak.plugins.document.LastRevRecoveryAgent" level="INFO"/> <!-- Display info messages from the scalability suite --> <logger name="org.apache.jackrabbit.oak.scalability" level="INFO"/> <logger name="org.apache.jackrabbit.oak.plugins.tika" level="INFO"/> <!-- Metrics Reporting--> <logger name="org.apache.jackrabbit.oak.metrics" level="INFO"/> <!-- For index tooling --> <logger name="org.apache.jackrabbit.oak.index" level="INFO"/> <logger name="org.apache.jackrabbit.oak.indexversion" level="INFO"/> <logger name="org.apache.jackrabbit.oak.plugins.index.importer" level="INFO"/> <logger name="org.apache.jackrabbit.oak.plugins.index.IndexUpdate" level="INFO"/> <logger name="org.apache.jackrabbit.oak.plugins.index.progress" level="INFO"/> <logger name="org.apache.jackrabbit.oak.index.indexer.document" level="INFO"/> <!-- Display information messages from oak-run check (oak-segment) --> <logger name="org.apache.jackrabbit.oak.plugins.segment.file.tooling.ConsistencyChecker" level="DEBUG"/> <!-- Display information messages from oak-run composite-prepare --> <logger name="org.apache.jackrabbit.oak.run.CompositePrepareCommand" level="INFO"/> <root level="warn"> <appender-ref ref="STDERR" /> </root> </configuration>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy