mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2025-03-12 15:13:47 +00:00
16 lines
275 B
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);
|
|
}
|