mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
Fix potential errors when plugins log with a null message
This commit is contained in:
parent
26ed947128
commit
a87b0db033
1 changed files with 10 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
From 12842ce0abe79fc49a1c054dbd3cd04a4959d0c1 Mon Sep 17 00:00:00 2001
|
||||
From 819926c72091eb14d928f7832e53293d0d27e0b2 Mon Sep 17 00:00:00 2001
|
||||
From: md_5 <md_5@live.com.au>
|
||||
Date: Sat, 22 Jun 2013 16:40:11 +1000
|
||||
Subject: [PATCH] Add Log Filtering
|
||||
|
@ -6,10 +6,10 @@ Subject: [PATCH] Add Log Filtering
|
|||
|
||||
diff --git a/src/main/java/org/spigotmc/LogFilter.java b/src/main/java/org/spigotmc/LogFilter.java
|
||||
new file mode 100644
|
||||
index 0000000..fd26480
|
||||
index 0000000..aa7e9ab
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/org/spigotmc/LogFilter.java
|
||||
@@ -0,0 +1,21 @@
|
||||
@@ -0,0 +1,24 @@
|
||||
+package org.spigotmc;
|
||||
+
|
||||
+import java.util.logging.Filter;
|
||||
|
@ -21,6 +21,8 @@ index 0000000..fd26480
|
|||
+
|
||||
+ public boolean isLoggable(LogRecord record)
|
||||
+ {
|
||||
+ if ( record.getMessage() != null )
|
||||
+ {
|
||||
+ for ( Pattern pattern : SpigotConfig.logFilters )
|
||||
+ {
|
||||
+ if ( pattern.matcher( record.getMessage() ).matches() )
|
||||
|
@ -28,11 +30,12 @@ index 0000000..fd26480
|
|||
+ return false;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ return true;
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||
index 0d53a5b..cc3b9d8 100644
|
||||
index 2998109..6528321 100644
|
||||
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
||||
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||
@@ -13,6 +13,8 @@ import java.util.HashMap;
|
||||
|
|
Loading…
Reference in a new issue