vote up 0 vote down star

My log4j.xml contains:

<appender class="org.jboss.logging.appender.RollingFileAppender" name="rm">
  ...
  </layout>

My log file shows timestamps that are out of order. Can we display based on timestamp?

2009-02-19 14:47:01,288 DEBUG [com.catalystwms.core.persistence.TransactionContext]  
2009-02-19 14:54:27,429 INFO [com.catalystwms.tms.services.background.purge.PurgeManager]  
2009-02-19 14:47:01,288 DEBUG [com.catalystwms.core.services.ServiceLocator] 

Please help me.

Thanks,

flag
Are you collecting logs from multiple servers into one log4j appender? Are you using any asynchronous appenders? We need to see more of your log4j.xml to know what is going on. – Eddie Feb 25 at 17:11
Yes.multiple threads are running within one server and I am using RollingFileAppender only not an asyncappender.Thanks – Madu Feb 25 at 17:55

7 Answers

vote up 1 vote down

Are the two log statements occurring on different threads.

(Thread 1) 2009-02-19 14:54:27,429 INFO [com.catalystwms.tms.services.background.purge.PurgeManager]
(Thread 2) 2009-02-19 14:47:01,288 DEBUG [com.catalystwms.core.services.ServiceLocator

I believe the log statements time accurrately gives the time when the event occurred but are just written out of order because thread 2 is waiting to get the lock. I believe wrapping your appender in a org.apache.log4j.AsyncAppender should fix the issue.

link|flag
Yes.multiple threads are running.Do I need to use AsyncAppender instaed of RollingFileAppender? – Madu Feb 25 at 17:51
You can keep the RollingFileAppender just wrap a AsyncAppender around it. i don't know how to do it in the config but in code AsyncAppender has a method: public void addAppender(org.apache.log4j.Appender newAppender) – richs Feb 25 at 18:38
vote up 0 vote down

The date format is designed to allow the a simple character based sort to order it correctly.

sort server.log | more

EDIT: This is useful for use on existing log files (not for configuring log4j).

link|flag
How can I use that in log4j.xml?please clarify – Madu Feb 25 at 17:59
You don't use it in log4j, You use it on the log afterwards (when you are reading it, perhaps). – Bill K Feb 25 at 18:20
I have n't idea where that entry should go?My log is dynamically constructed. – Madu Feb 25 at 18:41
It isn't an entry, it's a shell command. Basically he's just saying to sort the lines later, when you look at the log. – Adam Jaskiewicz Feb 25 at 19:04
Thanks.I can't sort like that. 'rm.log' is a text file having all logs and some of the log timestamps are out of order. if some exceptions occur the loga are logging into rm.log file. – Madu Feb 25 at 19:14
vote up -1 vote down

You probably won't be able to fix it before the log is written. You could try modifying log4J to call .flush() after every write, but that will make your code a good deal slower and @Chris Nava's solution is more appropriate.

link|flag
vote up 0 vote down

@rich, that's not true, Log4j prints the log statements in the right order even if printing out from different threads. Maybe you have two different processes printing out to the same file, or two webapps loaded with different classloaders.

link|flag
I have two different processes printing out to the same file.How can I fix this?Please give me hint – Madu Feb 25 at 18:38
AFAICT, there is no synchronization until you reach the QuietWriter. Logging statements will be logged in whatever order the threads manage to grab that semaphore; the timestamp---which is set in the constructor of the LoggingEvent---is meaningless as far as ordering is concerned. – Adam Jaskiewicz Feb 25 at 18:46
Sorry, sync happens on doAppend in AppenderSkeleton. – Adam Jaskiewicz Feb 25 at 18:53
vote up 1 vote down

You have two different processes logging to the same log file with a rolling appender. Log4j does not allow this. In the past, I've resolved this in a clustered web app by adding a server name to the log file: appname-server1.log and appname-server2.log with each server configured to write to their own log.

This can also be useful to track down bugs that are specific to one machine's configuration vs. another.

All of the above also works if you have two different applications writing to the same log file by naming the files based on the application being executed.

link|flag
vote up 0 vote down

In response to @andy:
(Thread 1) 2009-02-19 14:54:27,429 INFO [com.catalystwms.tms.services.background.purge.PurgeManager]
(Thread 2) 2009-02-19 14:47:01,288 DEBUG [com.catalystwms.core.services.ServiceLocator

what i believe may be happening is thread 2 creates a logRecord at 14:47:01,288 when it attempts to write, it needs to get a lock for the Logger's list of appenders, but another thread has the lock and is busy doing IO so thread 2 waits. thread 1 creates logRecord at 14:54:27,429 it attempts to get the same lock and also waits. When the lock is freed the OS gives it to thread 1 and it prints.

If this is true the other big issue is one of performance. Code paths could block on logging IO.

link|flag
vote up 0 vote down

Is there simple solution? What I have to do finally?

link|flag

Your Answer

Get an OpenID
or

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