I set my log4j configuration to use two appenders (ConsoleAppender and RollingFileAppender) the ConsoleAppender is using this layout (PatternLayout: ConversionPattern=%d [%t] %-5p %c - %m%n) and the RollingFileAppender is using XMLLayout. So the problem is that the ConsoleAppender output is displaying the correct date when I log an error, let's say "05/28/2010 12:45 PM" but the XMLLayout timestamp attribute is being set 5 hours into the future, when I convert that epoch value to DateTime I got "05/28/2010 5:45 PM". I even used http://www.epochconverter.com/ to check if my conversion algorithm was wrong and the result was the same. Any idea why is this happening?

Thanks

link|improve this question

40% accept rate
feedback

1 Answer

Sounds like one conversion is respecting UTC offset and one (the one in the future) is not. You're in the EDT timezone, correct?

link|improve this answer
Yes I'm in the EDT – Geykel Jun 2 '10 at 19:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.