mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-05 18:21:27 +01:00
Merge pull request #174 from Achsion/feature/detailed-connection-exception
Only show detailed connect exception to admins
This commit is contained in:
commit
872275f9d6
@ -1,23 +1,26 @@
|
|||||||
From 5e0a6aa349884b190a106b2c7609d6482ee5360f Mon Sep 17 00:00:00 2001
|
From 48878ec51074a1a90d1c4aa761a40fbec74bd8ac Mon Sep 17 00:00:00 2001
|
||||||
From: LinsaFTW <25271111+linsaftw@users.noreply.github.com>
|
From: LinsaFTW <25271111+linsaftw@users.noreply.github.com>
|
||||||
Date: Tue, 15 Nov 2022 18:07:27 +0100
|
Date: Tue, 15 Nov 2022 18:07:27 +0100
|
||||||
Subject: [PATCH] Show connection fail reason
|
Subject: [PATCH] Only show connection fail reason when detailed logger is
|
||||||
|
enabled
|
||||||
|
|
||||||
|
|
||||||
diff --git a/proxy/src/main/java/net/md_5/bungee/UserConnection.java b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
diff --git a/proxy/src/main/java/net/md_5/bungee/UserConnection.java b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
||||||
index f3d60253..999f02e5 100644
|
index f3d60253..021fe839 100644
|
||||||
--- a/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
--- a/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
||||||
+++ b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
+++ b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
|
||||||
@@ -406,7 +406,8 @@ public final class UserConnection implements ProxiedPlayer
|
@@ -405,8 +405,10 @@ public final class UserConnection implements ProxiedPlayer
|
||||||
|
// FlameCord - Allow for toggle the logging of connection failures
|
||||||
if(FlameCord.getInstance().getFlameCordConfiguration().isLoggerDetailedConnection()) {
|
if(FlameCord.getInstance().getFlameCordConfiguration().isLoggerDetailedConnection()) {
|
||||||
bungee.getLogger().log(Level.WARNING, "Error occurred processing connection for " + this.name + " " + Util.exception(cause, false)); // Waterfall
|
bungee.getLogger().log(Level.WARNING, "Error occurred processing connection for " + this.name + " " + Util.exception(cause, false)); // Waterfall
|
||||||
|
+ // FlameCord - Show connection fail reason
|
||||||
|
+ return groups.contains( "admin" ) ? cause.getMessage() : cause.getClass().getName();
|
||||||
}
|
}
|
||||||
- return ""; // Waterfall
|
- return ""; // Waterfall
|
||||||
+ // FlameCord - Show connection fail reason
|
+ return cause.getClass().getName(); // FlameCord
|
||||||
+ return cause.getMessage();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
--
|
--
|
||||||
2.37.3.windows.1
|
2.29.2.windows.2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user