2014-03-26 21:34:47 +01:00
|
|
|
From 07ce333f9cd3b809183828c8c05908c3cdc87b53 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
|
2014-03-26 21:34:47 +01:00
|
|
|
index 7d22cd5..3993f88 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
|
2014-02-12 14:48:26 +01:00
|
|
|
@@ -950,7 +950,12 @@ public class PlayerConnection implements PacketPlayInListener {
|
2013-06-21 10:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2014-03-23 01:06:43 +01:00
|
|
|
- this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage());
|
2013-06-21 10:01:41 +02:00
|
|
|
+ // Spigot Start
|
|
|
|
+ if ( org.spigotmc.SpigotConfig.logCommands )
|
|
|
|
+ {
|
2014-03-23 01:06:43 +01:00
|
|
|
+ this.c.info(event.getPlayer().getName() + " issued server command: " + event.getMessage());
|
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
|
2014-01-22 09:19:39 +01:00
|
|
|
index 9aaa09a..4d15f8b 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
|
2014-01-22 09:19:39 +01:00
|
|
|
@@ -130,4 +130,10 @@ public class SpigotConfig
|
|
|
|
config.addDefault( path, def );
|
|
|
|
return config.getString( path, config.getString( path ) );
|
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 );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2014-03-23 01:06:43 +01:00
|
|
|
1.8.5.2.msysgit.0
|
2013-06-21 10:01:41 +02:00
|
|
|
|