comparison src/luan/lib/logging/Logger.java @ 1339:f61df1aee8e1

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 17 Feb 2019 06:47:14 -0700
parents 8b61c8c4e07a
children
comparison
equal deleted inserted replaced
1338:5d414f5d34e8 1339:f61df1aee8e1
1 package luan.lib.logging; 1 package luan.lib.logging;
2 2
3 // Because slf4j is an overcomplicated piece of shit that caches loggers when it shouldn't. 3 // Because slf4j is an overcomplicated mess that caches loggers when it shouldn't.
4 4
5 public interface Logger { 5 public interface Logger {
6 public void error(String msg); 6 public void error(String msg);
7 public void error(String msg,Throwable t); 7 public void error(String msg,Throwable t);
8 public void warn(String msg); 8 public void warn(String msg);