Rust is developed using Unity so you could perhaps help me.
I'm starting my Rust server with NodeJS:
var gameProcess = childProcess.exec(`./RustDedicated -batchmode +server.identity "rust" ${launchParameters}`);
gameProcess.stdout.on("data", OnOutputMessage);
gameProcess.stderr.on("data", OnOutputError);
The console shows many messages with (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 39)
So I made data = data.replace("(Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 39)", "");
It works for some messages but not all. Can you help me to remove them?