接口 IPlayerLogger实验性

Log helper interface for Player.

interface IPlayerLogger {
    debug(message: string): void;
    error(message: string): void;
    info(message: string): void;
    warning(message: string): void;
}

方法

  • 实验性

    参数

    • message: string

      Message content

    返回 void

    Dispatch a player log message with Debug log level

  • 实验性

    参数

    • message: string

      Message content

    返回 void

    Dispatch a player log message with Error log level

  • 实验性

    参数

    • message: string

      Message content

    返回 void

    Dispatch a player log message with Info log level

  • 实验性

    参数

    • message: string

      Message content

    返回 void

    Dispatch a player log message with Warning log level