我的配置功能有问题。单击按钮时,我想重新加载配置文件。
我调用函数
std::string filepath = "../../configurationfile.txt"
log4cxx::PropertyConfigurator::configureAndWatch(log4cxx::File(filepath));
我也试试这个:
log4cxx::PropertyConfigurator::configure(log4cxx::File(filepath));
但文件仅在 60 秒后重新加载。
您对如何强制重新加载文件有任何想法吗?第一次,我使用 configureAndWatch 功能进行配置。
谢谢你的帮助。