Logging code Cleanup for Eclipse 1.0.1

Add this URL to your Eclipse Installation to reach this Solution's Update Site.
More Info


Categories:
None
Login or register to tag items

Logging code Cleanup plugin for Eclipse is an extension of the Eclipse Cleaun Ups which detects invocations of logging methods with compound arguments (requiring computation before method call) and prefixes them with corresponding if statements.

For example, the code:
log.debug("Me: " + this)

is replaced with:
if (log.isDebugEnabled()) log.debug("Me: " + this)

The following logging frameworks are supported by this plugin:

Java Util Logging
Log4j
SLF4J

Besides, the plugin provides extension point which allows to extend it to other frameworks.

Additional Details

  • Version Number: 1.0.1
  • Eclipse Versions: 3.5.+
  • Organization: Andrey Pavlenko
  • Date Created: 24/11/2011
  • Date Updated: 27/11/2011
  • Development Status: Production/Stable
  • License: EPL
  • Submitted by: Andrey Pavlenko
  • This listing has been installed 31 times in the last 30 days.

Reviews

Add a Review