Interface Logger

All Known Implementing Classes:
DefaultLogger

public interface Logger
Callback for log messages from the TeamViewer Sdk.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    d(String tag, String msg)
    Log with debug severity.
    void
    e(String tag, String msg)
    Log with error severity.
    void
    i(String tag, String msg)
    Log with info severity.
    void
    v(String tag, String msg)
    Log with verbose severity.
    void
    w(String tag, String msg)
    Log with warning severity.
  • Method Details

    • v

      void v(String tag, String msg)
      Log with verbose severity.
      Parameters:
      tag - Identifier for the source of a log message.
      msg - The message to log.
    • d

      void d(String tag, String msg)
      Log with debug severity.
      Parameters:
      tag - Identifier for the source of a log message.
      msg - The message to log.
    • i

      void i(String tag, String msg)
      Log with info severity.
      Parameters:
      tag - Identifier for the source of a log message.
      msg - The message to log.
    • w

      void w(String tag, String msg)
      Log with warning severity.
      Parameters:
      tag - Identifier for the source of a log message.
      msg - The message to log.
    • e

      void e(String tag, String msg)
      Log with error severity.
      Parameters:
      tag - Identifier for the source of a log message.
      msg - The message to log.