Paper/CraftBukkit-Patches/0036-Allow-Disabling-of-Command-Logging.patch

43 lines
1.7 KiB
Diff
Raw Normal View History

2013-12-21 23:05:27 +00:00
From 249f0877f660340f3afefe483a6c2c5f546ab721 Mon Sep 17 00:00:00 2001
2013-06-21 08:01:41 +00:00
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
2013-12-21 08:13:39 +00:00
index d0ea17a..31be464 100644
2013-06-21 08:01:41 +00:00
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
2013-12-21 08:13:39 +00:00
@@ -930,7 +930,12 @@ public class PlayerConnection implements PacketPlayInListener {
2013-06-21 08:01:41 +00:00
}
try {
2013-12-01 03:40:53 +00:00
- this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
2013-06-21 08:01:41 +00:00
+ // Spigot Start
+ if ( org.spigotmc.SpigotConfig.logCommands )
+ {
2013-12-01 03:40:53 +00:00
+ this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
2013-06-21 08:01:41 +00:00
+ }
+ // 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
2013-12-14 06:58:22 +00:00
index 0043690..26d5845 100644
2013-06-21 08:01:41 +00:00
--- a/src/main/java/org/spigotmc/SpigotConfig.java
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
2013-12-01 03:40:53 +00:00
@@ -136,4 +136,10 @@ public class SpigotConfig
{
commands.put( "tps", new TicksPerSecondCommand( "tps" ) );
2013-06-21 08:01:41 +00:00
}
+
+ public static boolean logCommands;
2013-06-21 08:57:20 +00:00
+ private static void logCommands()
2013-06-21 08:01:41 +00:00
+ {
+ logCommands = getBoolean( "commands.log", true );
+ }
}
--
2013-10-24 10:23:24 +00:00
1.8.3.2
2013-06-21 08:01:41 +00:00