I have a cron mession runs every minute So I can get a log in /var/log/message every minute But sometimes the timestamps of the log messages goes abnormal For example, a 12:20:20 message comes before a 12:10:00 message ,and after this message is a 12:11:00 message But for the same task goes as normal time It seems someone turns the clock in a process and turn it back again This will last for a while and then become normal I search many times but get nothing useful Anyone could give me a hint?
feedback
|
migrated from stackoverflow.com Mar 14 '11 at 19:40
This question came from our site for professional and enthusiast programmers.
|
does the process take longer than a minute to run? If so, you could be seeing the message written at the end of processing using the start time of the process which could make some messages appear out of sync. | |||
feedback
|