Configure the RTMS logger
This function allows you to configure the logging behavior of the RTMS SDK. You can change the log level, format, and enable/disable logging.
Configuration options for the logger
// Enable debug logging with JSON formatrtms.configureLogger({ level: rtms.LogLevel.DEBUG, format: rtms.LogFormat.JSON, enabled: true});// Disable loggingrtms.configureLogger({ enabled: false}); Copy
// Enable debug logging with JSON formatrtms.configureLogger({ level: rtms.LogLevel.DEBUG, format: rtms.LogFormat.JSON, enabled: true});// Disable loggingrtms.configureLogger({ enabled: false});
Configure the RTMS logger
This function allows you to configure the logging behavior of the RTMS SDK. You can change the log level, format, and enable/disable logging.