<?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 monitorInterval="300">
    <Appenders>
        <Console name="CONSOLE" target="SYSTEM_OUT">
            <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level][%t][%logger{36}] %msg%n"/>
            <ThresholdFilter level="ERROR" onMatch="DENY" onMismatch="ACCEPT"/>
        </Console>

        <Console name="CONSOLE_ERR" target="SYSTEM_ERR">
            <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level][%t][%logger{36}] %msg%n"/>
        </Console>

            <Routing name="IGNITE">
            <Routes pattern="$${sys:nodeId}">
                <Route>
                            <RollingFile name="Rolling-${sys:nodeId}" fileName="/opt/ignite/server/logs/${sys:appId}.log"
                                 filePattern="/opt/ignite/server/logs/${sys:appId}-${sys:nodeId}-%i-%d{yyyy-MM-dd}.log.gz">
                                <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level][%t][%logger{36}] %msg%n"/>
                        <Policies>
                            <TimeBasedTriggeringPolicy interval="1" modulate="true" />
                                </Policies>
                            </RollingFile>
                </Route>
            </Routes>
        </Routing>

    </Appenders>

    <Loggers>
        <!--
        <Logger name="org.apache.ignite" level=DEBUG/>
        -->
        <!--
            Uncomment to disable courtesy notices, such as SPI configuration
            consistency warnings.
        -->
        <!--
        <Logger name="org.apache.ignite.CourtesyConfigNotice" level=OFF/>
        -->
        <Logger name="org.eclipse.jetty.util.log" level="ERROR"/>
        <Logger name="org.eclipse.jetty.util.component" level="ERROR"/>

        <Logger name="com.amazonaws" level="WARN"/>

        <Logger name="org.apache.ignite" level="INFO" additivity="false">
            <AppenderRef ref="IGNITE"/>
        </Logger>

        <Logger name="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi" level="INFO" additivity="false">
            <appender-ref ref="IGNITE"/>
        </Logger>

        <Logger name="com.sbt.ignite" level="INFO" additivity="false" >
            <AppenderRef ref="IGNITE"/>
        </Logger>

        <Logger name="com.sbt.security" level="INFO" additivity="false">
            <AppenderRef ref="IGNITE"/>
        </Logger>

        <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader.PartitionPreloadingRoutine" level="DEBUG" additivity="false">
            <AppenderRef ref="IGNITE"/>
        </Logger>

        <Logger name="org.apache.ignite.internal.processors.cache.distributed.dht.preloader.IgnitePartitionPreloadManager" level="DEBUG" additivity="false">
            <AppenderRef ref="IGNITE"/>
        </Logger>


        <Root level="INFO">
            <AppenderRef ref="CONSOLE" level="DEBUG"/>
            <AppenderRef ref="CONSOLE_ERR" level="ERROR"/>

            <AppenderRef ref="IGNITE" level="INFO"/>

        </Root>

    </Loggers>
</Configuration>
