@zoom/rtms
    Preparing search index...

    Function configureLogger

    • 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.

      Parameters

      Returns void

      // Enable debug logging with JSON format
      rtms.configureLogger({
      level: rtms.LogLevel.DEBUG,
      format: rtms.LogFormat.JSON,
      enabled: true
      });

      // Disable logging
      rtms.configureLogger({
      enabled: false
      });