How to disable command block logging into the log files in minecraft
There are 2 /gamerule
s that govern Command Block Output to the chat. The one you are looking for is
/gamerule logAdminCommands false
The the wiki entry on command blocks for more information.
Output Message
The output message describes the success or failure of the executed command, and may be written to multiple destinations: [...]
Chat: The output message is written to the chat text in singleplayer mode, or broadcast to all other ops in multiplayer mode, unless it has been suppressed with
/gamerule commandBlockOutput false
.Some commands may write additional text to the chat as their normal function which won't be suppressed (for example, the
/say
command will write a message to the chat of all players), separate from the output message. [...]Logs: The output message is written to multiplayer server logs unless it has been suppressed with
/gamerule logAdminCommands false
.
So the problem is the capitalization of the line.
It is not like this:
/gamerule commandBlockoutput false
It is like this:
/gamerule commandBlockOutput false
It should work.
And if you're doing it from the vanilla server console, remove the forward slash.
gamerule commandBlockOutput false