I have a server for Euro Truck Simulator 2 which is called by the following command:
LD_LIBRARY_PATH='$ORIGIN/../../linux64' eurotrucks2_server When the server is running, sometimes I get these lines in console (and I'd like to hide them):
src/steamnetworkingsockets/clientlib/steamnetworkingsockets_sdr_common.h (564) : m_pServer->m_nReplyTimeoutsSinceLastRecv == 0 But whenever I append a | grep -v "Timeout" or | grep -v "steamnetworkingsockets", the server output is truncated at precisely this line:
Setting breakpad minidump AppID = 227300 I also tried the --line-buffered option for grep without luck and also removing grep and using | tail -f has the same result..
Here's the whole output: https://paste.debian.net/hidden/290d8573/
Thanks