org.telegram.api.engine.LoggerInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
The newest version!
package org.telegram.api.engine;
/**
* Created with IntelliJ IDEA.
* User: Ruben Bermudez
* Date: 11.11.13
* Time: 4:48
*/
public interface LoggerInterface {
/**
* W void.
*
* @param tag the tag
* @param message the message
*/
void w(String tag, String message);
/**
* D void.
*
* @param tag the tag
* @param message the message
*/
void d(String tag, String message);
/**
* E void.
*
* @param tag the tag
* @param t the t
*/
void e(String tag, Throwable t);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy