Add our command logging disable patch
This commit is contained in:
parent
3abc02a4c8
commit
3fbe058033
@ -0,0 +1,42 @@
|
|||||||
|
From b67a84c4c41e1a1e5cf4b70f70d67625ed5c869c Mon Sep 17 00:00:00 2001
|
||||||
|
From: md_5 <md_5@live.com.au>
|
||||||
|
Date: Fri, 21 Jun 2013 18:01:29 +1000
|
||||||
|
Subject: [PATCH] Allow Disabling of Command Logging
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||||
|
index a292c1a..0e8d292 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
||||||
|
@@ -970,7 +970,12 @@ public class PlayerConnection extends Connection {
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
- this.minecraftServer.getLogger().info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
|
||||||
|
+ // Spigot Start
|
||||||
|
+ if ( org.spigotmc.SpigotConfig.logCommands )
|
||||||
|
+ {
|
||||||
|
+ this.minecraftServer.getLogger().info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
|
||||||
|
+ }
|
||||||
|
+ // Spigot end
|
||||||
|
if (this.server.dispatchCommand(event.getPlayer(), event.getMessage().substring(1))) {
|
||||||
|
org.bukkit.craftbukkit.SpigotTimings.playerCommandTimer.stopTiming(); // Spigot
|
||||||
|
return;
|
||||||
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
index 2e9341b..b283c7d 100644
|
||||||
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
||||||
|
@@ -189,4 +189,10 @@ public class SpigotConfig
|
||||||
|
"/skill"
|
||||||
|
} ) );
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public static boolean logCommands;
|
||||||
|
+ private void logCommands()
|
||||||
|
+ {
|
||||||
|
+ logCommands = getBoolean( "commands.log", true );
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.8.1.2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user