2013-07-02 05:21:57 +02:00
|
|
|
From 39a94d3392478f822c6d6c516e7481690e6d80e1 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-02 05:03:56 +02:00
|
|
|
index fc174b2..c2a9878 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-02 05:03:56 +02:00
|
|
|
@@ -991,7 +991,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-02 01:08:07 +02:00
|
|
|
index 1eacf1e..72300c9 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-07-02 01:08:07 +02:00
|
|
|
@@ -227,4 +227,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
|
|
|
|
|