From: <dr...@us...> - 2002-11-10 20:35:11
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro In directory usw-pr-cvs1:/tmp/cvs-serv29126/src/org/webmacro Modified Files: Log.java Log Message: - make WMServlet.doGet() non-final - make logging API's use Throwable instead of Exception You'll want to do an "ant clean" before you try to compile. Index: Log.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/Log.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Log.java 11 Jun 2002 17:43:20 -0000 1.6 --- Log.java 10 Nov 2002 20:35:08 -0000 1.7 *************** *** 38,42 **** * during development. */ ! public void debug(String msg, Exception e); /** --- 38,42 ---- * during development. */ ! public void debug(String msg, Throwable e); /** *************** *** 67,71 **** * system you would expect to see only a few warnings. */ ! public void warning(String msg, Exception e); /** --- 67,71 ---- * system you would expect to see only a few warnings. */ ! public void warning(String msg, Throwable e); /** *************** *** 85,89 **** * to see any error messages. */ ! public void error(String msg, Exception e); /** --- 85,89 ---- * to see any error messages. */ ! public void error(String msg, Throwable e); /** |