1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2025-07-09 08:06:25 +00:00
Files
telegram_backup/src/org/telegram/mtproto/log/LogInterface.java

16 lines
275 B
Java

package org.telegram.mtproto.log;
/**
* Created with IntelliJ IDEA.
* User: ex3ndr
* Date: 10.11.13
* Time: 2:11
*/
public interface LogInterface {
void w(String tag, String message);
void d(String tag, String message);
void e(String tag, Throwable t);
}