我正在使用部署在Websphere Application Server 7上的代码,该代码抛出ServletException,如下所示:
if (BaseConvertors.isEmpty(email)) {
throw new ServletException("Invalid url access - not authenticated.");
}
email
是String
。
当我在Eclipse中调试servlet时,我看到控制台中打印出了堆栈跟踪。但SystemOut.log
文件中没有异常的迹象。此代码位于doGet
方法内部,该方法会抛出异常本身。
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {}
如何在SystemOut.log
文件中记录异常?
答案 0 :(得分:0)
错误会记录到SystemError.log ... duh!