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.
|
You can register a callback by attaching your own appender. Just make sure to derive from
|
|||
|
|
|
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 If that's not what you want, please clarify your requirements. |
|||||||||||||||
|