提交 077e33ed 编写于 作者: K kohsuke

stack trace is crucial for assisting users

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@11921 71c3de6d-444a-0410-be80-ed276b4c234a
上级 6d5788df
......@@ -10,6 +10,7 @@ import javax.swing.JOptionPane;
import java.io.StringWriter;
import java.io.PrintWriter;
import java.util.logging.Logger;
import java.util.logging.Level;
import java.util.List;
import java.util.ArrayList;
......@@ -114,7 +115,7 @@ public class Main {
}
public void error(final Throwable t) {
LOGGER.severe(t.getMessage());
LOGGER.log(Level.SEVERE, t.getMessage(), t);
System.exit(-1);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册