1 16 package net.sf.jftp.system.logging; 17 18 public interface Logger 19 { 20 public void debug(String msg); 21 22 public void debugRaw(String msg); 23 24 public void debug(String msg, Throwable throwable); 25 26 public void warn(String msg); 27 28 public void warn(String msg, Throwable throwable); 29 30 public void error(String msg); 31 32 public void error(String msg, Throwable throwable); 33 34 public void info(String msg); 35 36 public void info(String msg, Throwable throwable); 37 38 public void fatal(String msg); 39 40 public void fatal(String msg, Throwable throwable); 41 } 42 | Popular Tags |