Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using log4j for my app logging. Whenever some error messages are logged, i would like to perform some action like sending socket msg/sending traps/db update. I could see that, in log4j, StringMatchFilter or LevelRange Filter can be used to grep the string. But is it possible to register any callback method with log4j which will be invoked upon any string matching? I guess its possible Jamon tool but dont want use a new framework for this simple feature.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can register a callback by attaching your own appender. Just make sure to derive from org.apache.log4j.AppenderSkeleton so you only have to implement the append(LoggingEvent) method.

AppenderSkeleton handles the filtering, so you can add the usual <filter> configuration to your appender and your append method will only be called for matching events.

share|improve this answer
Thanks Dan. Looks simple and great. – ihavprobs Mar 15 '11 at 13:54

Are those actions part of your business logic or are they just additional ways to store your log info?

If it's part of your business logic, then I think you're trying to attach them at the wrong point.

If you just want more ways to transfer/store your logs, then look at the different Appender implementations there are. There's already a wide array of different Appender versions out there and attaching them at the appropriate logger might just do what you want.

If that's not what you want, please clarify your requirements.

share|improve this answer
I am not trying to store logs; just want to notify some other application when error message are logged in my app log. – ihavprobs Mar 15 '11 at 10:21
1  
@shk: sounds like the job for an appender. – Joachim Sauer Mar 15 '11 at 10:21
Are you saying like, probably use SocketAppender and listen as a server and perform any action when the socket server receives messages? – ihavprobs Mar 15 '11 at 10:31
1  
@shk: yes, that's one way. You can also use an SMTPAppender, JMSAppender, NTEventLogAppender, ... whichever one fits your needs. – Joachim Sauer Mar 15 '11 at 10:32
yeah, got it. thanks – ihavprobs Mar 15 '11 at 10:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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