X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=source%2Fmir%2Flog%2FLogger.java;h=af3a1718a0b0dabfc90ab69a5baa005ae07ea039;hb=1f0ad3f2013909116569c243abbc02dde6c7161a;hp=47dc7db9dd121a61492e144045a9a12791a85058;hpb=a459f111d85598df56c6ab711cec11632676b39c;p=mir.git diff --git a/source/mir/log/Logger.java b/source/mir/log/Logger.java index 47dc7db9..af3a1718 100755 --- a/source/mir/log/Logger.java +++ b/source/mir/log/Logger.java @@ -18,13 +18,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * In addition, as a special exception, The Mir-coders gives permission to link - * the code of this program with any library licensed under the Apache Software License, - * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library - * (or with modified versions of the above that use the same license as the above), - * and distribute linked combinations including the two. You must obey the - * GNU General Public License in all respects for all of the code used other than - * the above mentioned libraries. If you modify this file, you may extend this - * exception to your version of the file, but you are not obligated to do so. + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. * If you do not wish to do so, delete this exception statement from your version. */ @@ -33,9 +33,13 @@ package mir.log; public interface Logger { - public void debug( Object o, String s); - public void info( Object o, String s); - public void warn( Object o, String s); - public void error( Object o, String s); - public void fatal( Object o, String s); + public void debug(Object o, String s); + public void info(Object o, String s); + public void warn(Object o, String s); + public void warn(Object o, String s, Throwable anException); + public void error(Object o, String s); + public void error(Object o, String s, Throwable anException); + public void fatal(Object o, String s); + + public void reload() throws LoggerExc, LoggerFailure; }