我们能否在一个类中创建两个 log4j 实例以写入文件,另一个在 jdbcadapter 中?
// one to write log in console
Logger log = Logger.getLogger(this.getClass());
// write in database within one class
Logger log1 = Logger.getLogger(this.getClass());
我的 jdbc 适配器是我的文件适配器是我想为文件记录器实例日志和用于 jdbc 的记录器即时日志 1。