I have a problem with the configure functionnality. I want to reload my configuration file when I click on a button.
I call the function
std::string filepath = "../../configurationfile.txt"
log4cxx::PropertyConfigurator::configureAndWatch(log4cxx::File(filepath));
I try this one too:
log4cxx::PropertyConfigurator::configure(log4cxx::File(filepath));
But the file was only reloaded after 60 second.
Do you have any idea about how to forced the reload of the file ? The first time, i configure with the configureAndWatch function.
Thanks for your Help.