Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to track down an issue in one of my Java projects and I am currently facing the possibility of having to manually add a lot of logging statements to a whole bunch of methods. As you can probably understand, I am not very fond of that idea:

  • Most of those methods are performance-critical and I'd rather not add logging when it's not needed, even if it's something as lightweight as log4j.

  • In some cases I'd like to log the operation of classes from the Java library. While the OpenJDK source code is available, I am not going to provide my own Java library version just for this.

  • I am interested in logging specific code paths under specific conditions. While I could probably centralize the logging applicability checks, I still foresee unforeseen refactoring in my future, should I need to modify the conditions.

  • Adding logging statements en-mass requires a lot of work and time, which I'd rather use more productively.

Considering the existence of bytecode manipulation libraries, such as Javassist and BCEL, I was hoping that there might be a logging framework that would take the grunt work out of my hands.

Since I am mainly interested in logging method call arguments and return values under specific conditions, is there an instrumentation-based logging framework for Java that would allow me to do this? Preferably something somewhat more modern and a little less awkward than Java agents?

share|improve this question

1 Answer

up vote 2 down vote accepted

Logging is the "hello world" of aspect-oriented programming.

If you're already a Spring user, you'll be able to write a single aspect class to log what you want and then weave it declaratively into all the objects that need it.

Spring has its own AOP implementation; it also supports AspectJ.

You can use AspectJ without Spring if that's your preference.

share|improve this answer
+1 AOP seems like a possible solution, one that I had considered before. I was, though, hoping for something a bit more specialized that would involve a minimum amount of effort on my behalf... – thkala Dec 1 '11 at 17:53
One class and some configuration to weave it in - how much less were you hoping for? – duffymo Dec 1 '11 at 19:34

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.