Interface ILogger

All Known Implementing Classes:
Log4jWrapper

public interface ILogger
Deprecated.
replaced by Utils
Author:
odys-z@github.com
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    d(String tag, String msg)
    Deprecated.
     
    void
    e(String tag, String msg)
    Deprecated.
     
    void
    i(String tag, String msg)
    Deprecated.
     
    setDebugMode(boolean isDebug)
    Deprecated.
    Logger can working in debug mode and release mode.
    void
    v(String tag, String msg)
    Deprecated.
     
    void
    w(String tag, String msg)
    Deprecated.
     
  • Method Details

    • setDebugMode

      ILogger setDebugMode(boolean isDebug)
      Deprecated.
      Logger can working in debug mode and release mode. If in debug mode, i(), d(), v() are disabled.
      Parameters:
      isDebug -
      Returns:
      this logger
    • e

      void e(String tag, String msg)
      Deprecated.
    • w

      void w(String tag, String msg)
      Deprecated.
    • i

      void i(String tag, String msg)
      Deprecated.
    • d

      void d(String tag, String msg)
      Deprecated.
    • v

      void v(String tag, String msg)
      Deprecated.