我想维护一个日志文件或 txt 文件,我可以在其中维护异常详细信息以及 txt 或日志文件中的一些其他详细信息。场景是这样的
try {
.......
} catch(exception e) {
here the file should be created
}
在不使用日志框架的情况下,什么是最好的优化解决方案。
这对我有用吗?
try {
// something
} catch (Exception ex) {
ex.printStackTrace(new PrintStream(new File("error.log")));
}