2013-07-01 06:35:48 +02:00
|
|
|
From 25f2b26cd9798f8e2b0dbd77f323e30e263730ba Mon Sep 17 00:00:00 2001
|
2013-06-21 10:01:41 +02: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-07-01 06:35:48 +02:00
|
|
|
index 03e0e1c..be44514 100644
|
2013-06-21 10:01:41 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2013-07-01 06:35:48 +02:00
|
|
|
@@ -979,7 +979,12 @@ public class PlayerConnection extends Connection {
|
2013-06-21 10:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2013-07-01 06:35:48 +02:00
|
|
|
index 4cac938..d4a8777 100644
|
2013-06-21 10:01:41 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2013-06-22 06:35:20 +02:00
|
|
|
@@ -213,4 +213,10 @@ public class SpigotConfig
|
2013-06-21 10:01:41 +02:00
|
|
|
"/skill"
|
|
|
|
} ) );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static boolean logCommands;
|
2013-06-21 10:57:20 +02:00
|
|
|
+ private static void logCommands()
|
2013-06-21 10:01:41 +02:00
|
|
|
+ {
|
|
|
|
+ logCommands = getBoolean( "commands.log", true );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
|
|
|
1.8.1.2
|
|
|
|
|