Interface SinchLogCallback

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      Unit onLogMessage(Integer level, String area, String message) Optional method for handling log messages from the Sinch SDK.
      Unit onLogMessage(Integer level, String area, String message, Throwable throwable) Optional method for handling log messages from the Sinch SDK.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • onLogMessage

        @Deprecated(message = "Use onLogMessage(level: Int, area: String, message: String, throwable: Throwable?) instead", replaceWith = @ReplaceWith(imports = {}, expression = "onLogMessage(level: Int, area: String, message: String, throwable: Throwable?)")) Unit onLogMessage(Integer level, String area, String message)

        Optional method for handling log messages from the Sinch SDK.

        Parameters:
        level - The severity level.
        area - The underlying functionality reporting the message.
        message - The log message.
      • onLogMessage

         Unit onLogMessage(Integer level, String area, String message, Throwable throwable)

        Optional method for handling log messages from the Sinch SDK.

        Parameters:
        level - The severity level.
        area - The underlying functionality reporting the message.
        message - The log message.
        throwable - Optional exception to log.