I have a RCP application, in which I am using log4j.properties. I have kept this file just under the root file.
Now while using it inside a java file I must use the following lines :
BasicConfigurator.configure();
PropertyConfigurator.configure(log4jConfPath);
But, for that purpose, I need to know the path for the exported log4j.properties. But, as currently no .properties is getting exported with RCP product export, I need to place them manually, use that path as log4jConfPath
.
So, how can I export the log4j.properties in the RCP product.
Thanks!