I have downloaded Log4Cpp code project and built succesfully on my windows 7 64 bit machine. I have also used properties file in my code in following way -
const char* initFileName = "log4cpp.property";
log4cpp::PropertyConfigurator::configure(initFileName);
I am using it in a console application so I placed log4cpp.property file in a bin directory where my exe file exist.
But whenever I am trying run 2nd line of code throws exception as given file does not exist. So can some body please help me with directory structure I should follow to use Log4Cpp
Thanks