Use the RIDE API to implement your own logging.
Use the RIDE API to implement your own logging.
Implement the ILogger interface and use the ILogSystem to add it to your simulation.
public class ExampleLoggerImplementation : ILogger{ /*Your logging implementation*/}
Globals.api = ApiSystemMono.CreateApiSystemMono();
ILogger scenarioLogger = new ExampleLoggerImplementation();
Globals.api.logSystem.AddLogger(scenarioLogger);