Configuring log4j for development and production

For a while now I have used Log4j as the primary logging implementation. There was always a battle of what to do when a application moves from development into the various other environments. Should the ops guys manualy have to edit the log4j.properties files to turn the logging level from DEBUG to INFO for every […]

Read More »

Code coverage results reporting 100%

I turned off the debug option on the ant task javac and my code coverage went upto 100%. This is because the debug option is to do with the javac –g option which compiles the code with debugging information such as line numbers etc. My code coverage couldn’t identify any debug information in my class […]

Read More »