2013-12-22 00:05:27 +01:00
|
|
|
From 249f0877f660340f3afefe483a6c2c5f546ab721 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-12-21 09:13:39 +01:00
|
|
|
index d0ea17a..31be464 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-12-21 09:13:39 +01:00
|
|
|
@@ -930,7 +930,12 @@ public class PlayerConnection implements PacketPlayInListener {
|
2013-06-21 10:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2013-12-01 04:40:53 +01:00
|
|
|
- this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
|
2013-06-21 10:01:41 +02:00
|
|
|
+ // Spigot Start
|
|
|
|
+ if ( org.spigotmc.SpigotConfig.logCommands )
|
|
|
|
+ {
|
2013-12-01 04:40:53 +01:00
|
|
|
+ this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage()); // CraftBukkit
|
2013-06-21 10:01:41 +02: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 07:58:22 +01:00
|
|
|
index 0043690..26d5845 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-12-01 04:40:53 +01:00
|
|
|
@@ -136,4 +136,10 @@ public class SpigotConfig
|
|
|
|
{
|
|
|
|
commands.put( "tps", new TicksPerSecondCommand( "tps" ) );
|
2013-06-21 10:01:41 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ 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 );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2013-10-24 12:23:24 +02:00
|
|
|
1.8.3.2
|
2013-06-21 10:01:41 +02:00
|
|
|
|