2014-08-31 20:56:05 +02:00
|
|
|
From abe67ad73f7f5c0d156def0bec08583d78a823d3 Mon Sep 17 00:00:00 2001
|
2014-07-27 21:26:04 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Fri, 21 Jun 2013 18:01:29 +1000
|
2014-07-21 22:46:54 +02:00
|
|
|
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
|
|
|
|
index 9596da2..3a24fcd 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
@@ -944,7 +944,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
|
|
org.bukkit.craftbukkit.SpigotTimings.playerCommandTimer.startTiming(); // Spigot
|
|
|
|
|
|
|
|
// CraftBukkit start - whole method
|
|
|
|
- this.c.info(this.player.getName() + " issued server command: " + s);
|
|
|
|
+ if ( org.spigotmc.SpigotConfig.logCommands ) this.c.info(this.player.getName() + " issued server command: " + s);
|
|
|
|
|
|
|
|
CraftPlayer player = this.getPlayer();
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-07-27 21:26:04 +02:00
|
|
|
index 6dfa8b0..c9e6dc5 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotConfig.java
|
2014-07-27 21:26:04 +02:00
|
|
|
@@ -148,4 +148,10 @@ public class SpigotConfig
|
|
|
|
config.addDefault( path, def );
|
|
|
|
return config.getDouble( path, config.getDouble( path ) );
|
|
|
|
}
|
2014-07-21 22:46:54 +02:00
|
|
|
+
|
|
|
|
+ public static boolean logCommands;
|
|
|
|
+ private static void logCommands()
|
|
|
|
+ {
|
|
|
|
+ logCommands = getBoolean( "commands.log", true );
|
2014-07-27 21:26:04 +02:00
|
|
|
+ }
|
2014-07-21 22:46:54 +02:00
|
|
|
}
|
|
|
|
--
|
|
|
|
1.9.1
|
2014-07-30 10:35:19 +02:00
|
|
|
|