Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync log4j2.xml file with defaults from the server repo #277

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions config/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<Memory name="graylog-internal-logs" bufferSizeBytes="20MB">
<PatternLayout pattern="%d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX} %-5p [%c{1}] %m%n"/>
</Memory>

</Appenders>
<Loggers>
<!-- Application Loggers -->
Expand Down Expand Up @@ -37,6 +38,16 @@
<Logger name="org.apache.hadoop" level="warn"/>
<Logger name="org.apache.parquet.hadoop.InternalParquetRecordReader" level="warn"/>
<Logger name="org.apache.avro.Schema" level="error"/>
<!-- Silence Selenium log chatter -->
<Logger name="org.openqa.selenium.devtools.Connection" level="warn"/>
<!-- Silence Apache Iceberg log chatter -->
<Logger name="org.apache.iceberg.BaseMetastoreCatalog" level="warn"/>
<Logger name="org.apache.iceberg.BaseMetastoreTableOperations" level="warn"/>
<Logger name="org.apache.iceberg.CatalogUtil" level="warn"/>
<Logger name="org.apache.iceberg.IncrementalFileCleanup" level="warn"/>
<Logger name="org.apache.iceberg.SnapshotProducer" level="warn"/>
<Logger name="org.apache.iceberg.SnapshotScan" level="warn"/>
<Logger name="org.apache.iceberg.metrics.LoggingMetricsReporter" level="warn"/>
<Root level="warn">
<AppenderRef ref="STDOUT"/>
<AppenderRef ref="graylog-internal-logs"/>
Expand Down