i am using log4cxx-0.9.7 with visual studio 2005 on Windows Server 2003 
Enterprise Edition.
When is use log4cxx and win32 function localtime( &thislogtime)
localtime() is retriving the wrong time 
when is exclude log4cxx, it is working fine

sample code is....

root = Logger::getRootLogger();
logger = Logger::getLogger(_T("loggger.testlog"));
DOMConfigurator::configure(_T("../config/log4cxx.xml"));
.
.
.
time_t thislogtime;
time( &thislogtime );
newtime=localtime( &thislogtime) ;
sprintf_s(timeFormatTime,_MAX_PATH,"%d:%d:%d",newtime->tm_hour,newtime->tm_min,newtime->tm_sec);
.

is it a bug in log4cxx-0.9.7? please any help.....

Thanks
narts  



-- 
View this message in context: 
http://www.nabble.com/log4cxx-and-localtime%28--thislogtime%29-in-vc%2B%2B-8.0-tp16276522p16276522.html
Sent from the Log4cxx - Users mailing list archive at Nabble.com.

Reply via email to