We're logging some events in our servers, we get the current time of each event, instancing a new Date object. like this new Date()
But yesterday something went wrong. the logger shows that this entry was logged at 2012-01-21 14:06:04, but the event got a different time from the new Date(), this one: 2012-01-21 13:06:04
There is one hour difference.
Nonetheless, the other events get a correct time just before and after this buggy event.
BONUS
We log the events using this formatter:
// Of course, this means that we read our buggy timestamp like: '120121130604'
// but that's irrelevant :p
public static SimpleDateFormat messageDateTimeFormatter = new SimpleDateFormat("yyMMddHHmmss");
Any ideas?