Re: How to get Local Time

2011-08-29 Thread Curt Arnold
log4c_category_log isn't a method in Apache log4cxx. I believe that you are using a different product and should ask your question on a forum for log4c users. On Aug 22, 2011, at 7:03 AM, pavan_734 wrote: > > log4c_category_log() is giving time in UTC even though I have set time zone > to Ind

Re: Log file size grows larger than the size configured using log4j.appender.R.MaxFileSize

2011-08-29 Thread Curt Arnold
Anything that might keep a lock of the file can prevent rolling from completing. For example, if somehow you had two appenders having the same file open, then you could would always fail on the rename. Is there any chance that two components (your EXE and maybe another DLL) both link against log

Re: Compilation warning under Visual Studio 2008

2011-08-29 Thread Curt Arnold
If I remember correctly and it has been a long time, you will get these messages anytime you pass an STL template expansion as an argument or return value across of DLL boundary. As long as the STL instance is not free'd or reallocated by the caller (who would have a separate instance of the RTL