| <?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="60"> |
| <Appenders> |
| <Console name="CONSOLE" target="SYSTEM_OUT"> |
| <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/> |
| <ThresholdFilter level="ERROR" onMatch="DENY" onMismatch="ACCEPT"/> |
| </Console> |
| |
| <Console name="CONSOLE_ERR" target="SYSTEM_ERR"> |
| <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/> |
| </Console> |
| |
| <Routing name="FILE"> |
| <Routes pattern="$${sys:nodeId}"> |
| <Route> |
| <RollingFile name="Rolling-${sys:nodeId}" fileName="${sys:IGNITE_HOME}/work/log/ignite-${sys:nodeId}.log" |
| filePattern="${sys:IGNITE_HOME}/work/log/ignite-${sys:nodeId}-%i-%d{yyyy-MM-dd}.log.gz"> |
| <PatternLayout pattern="[%d{ISO8601}][%-5p][%t][%c{1}]%notEmpty{[%markerSimpleName]} %m%n"/> |
| <Policies> |
| <TimeBasedTriggeringPolicy interval="6" modulate="true" /> |
| <SizeBasedTriggeringPolicy size="10 MB" /> |
| </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.springframework" level="WARN"/> |
| <Logger name="org.eclipse.jetty" level="WARN"/> |
| |
| <!-- |
| Avoid warnings about failed bind attempt when multiple nodes running on the same host. |
| --> |
| <Logger name="org.eclipse.jetty.util.log" level="ERROR"/> |
| <Logger name="org.eclipse.jetty.util.component" level="ERROR"/> |
| |
| <Logger name="com.amazonaws" level="WARN"/> |
| |
| <Root level="INFO"> |
| <!-- Uncomment to enable logging to console. --> |
| <!-- |
| <AppenderRef ref="CONSOLE" level="DEBUG"/> |
| --> |
| |
| <AppenderRef ref="CONSOLE_ERR" level="ERROR"/> |
| <AppenderRef ref="FILE" level="DEBUG"/> |
| </Root> |
| </Loggers> |
| </Configuration> |