Purpose

Use the RIDE API to implement your own logging.

How to Use

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);