Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created September 18, 2015 17:57
Show Gist options
  • Save mkusher/af433d0a2c1288ff3a71 to your computer and use it in GitHub Desktop.
Save mkusher/af433d0a2c1288ff3a71 to your computer and use it in GitHub Desktop.
public interface LoggerInterface
{
public void log(String message, int level);
public void error(String message);
public void debug(String message);
public void notify(String message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment