ILogUtil.java 257 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.yidianling.avchatkit.common.log;

/**
 * Created by winnie on 2017/12/21.
 */

public interface ILogUtil {
    void ui(String msg);

    void e(String tag, String msg);

    void i(String tag, String msg);

    void d(String tag, String msg);
}