You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.6 KiB
32 lines
1.6 KiB
5 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<Configuration packages="org.graylog2.log4j,de.bwaldvogel.log4j" shutdownHook="disable">
|
||
|
<Appenders>
|
||
|
<SystemdJournal name="journal" logStacktrace="true" logSource="false" />
|
||
|
|
||
|
<!-- Internal Graylog log appender. Please do not disable. This makes internal log messages available via REST calls. -->
|
||
|
<Memory name="graylog-internal-logs" bufferSize="500"/>
|
||
|
</Appenders>
|
||
|
<Loggers>
|
||
|
<!-- Application Loggers -->
|
||
|
<Logger name="org.graylog2" level="info"/>
|
||
|
<Logger name="com.github.joschi.jadconfig" level="warn"/>
|
||
|
<!-- This emits a harmless warning for ActiveDirectory every time which we can't work around :( -->
|
||
|
<Logger name="org.apache.directory.api.ldap.model.message.BindRequestImpl" level="error"/>
|
||
|
<!-- Prevent DEBUG message about Lucene Expressions not found. -->
|
||
|
<Logger name="org.elasticsearch.script" level="warn"/>
|
||
|
<!-- Disable messages from the version check -->
|
||
|
<Logger name="org.graylog2.periodical.VersionCheckThread" level="off"/>
|
||
|
<!-- Silence chatty natty -->
|
||
|
<Logger name="com.joestelmach.natty.Parser" level="warn"/>
|
||
|
<!-- Silence Kafka log chatter -->
|
||
|
<Logger name="kafka.log.Log" level="warn"/>
|
||
|
<Logger name="kafka.log.OffsetIndex" level="warn"/>
|
||
|
<!-- Silence useless session validation messages -->
|
||
|
<Logger name="org.apache.shiro.session.mgt.AbstractValidatingSessionManager" level="warn"/>
|
||
|
<Root level="warn">
|
||
|
<AppenderRef ref="journal"/>
|
||
|
<AppenderRef ref="graylog-internal-logs"/>
|
||
|
</Root>
|
||
|
</Loggers>
|
||
|
</Configuration>
|