1 20 21 package org.xmpp.component; 22 23 39 public interface Log { 40 41 46 public void error(String message); 47 48 54 public void error(String message, Throwable throwable); 55 56 61 public void error(Throwable throwable); 62 63 68 public void warn(String message); 69 70 76 public void warn(String message, Throwable throwable); 77 78 83 public void warn(Throwable throwable); 84 85 90 public void info(String message); 91 92 98 public void info(String message, Throwable throwable); 99 100 105 public void info(Throwable throwable); 106 107 112 public void debug(String message); 113 114 120 public void debug(String message, Throwable throwable); 121 122 127 public void debug(Throwable throwable); 128 129 } | Popular Tags |