我的应用程序将参数作为输入,所有其他过程都基于此参数发生
我想根据输入参数创建具有名称的日志文件
谁能让我知道我该怎么做?
我正在使用 Log4J 1.2.17。
复制自 log4j 手册阅读配置部分
public static void main(String[] args) {
// BasicConfigurator replaced with PropertyConfigurator.
PropertyConfigurator.configure(args[0]); //args[0] path to your log4 conf file
}