0

When players chat on my Ubuntu Minecraft server they can see the chat clearly in the game and it's fine. However when I look at the terminal all I see is 1 bracket for each time they enter something in as shown in the picture shown: picture of chat in terminal

When I also look at my latest.log file using vim the chat shows up but with odd characters here: latest.log file

With some of the minecraft commands it also displays weird characters as shown:

[23:33:29] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[23:33:29] [Server thread/INFO]: ^[[0;37;1mPermissions reloaded^[[m

I've tried looking at this thread Pressing enter produces ^M instead of a newline and tried to use the command "stty sane" but that didn't help. My stty settings also have icrnl enabled as well.

I've also tried to restart my server but it still shows the same characters.

J4102
  • 153
  • 2
  • 9

1 Answers1

0

Those characters are terminal color codes. The log file doesn't filter those out, and Vim shows them explicitly instead of changing colors on you.

dhasenan
  • 274