AndreyPavlenko / lce Public
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Code
Logging code Cleanup plugin for Eclipse This is an extension of the Eclipse Clean Ups which detects invocations of the logging methods with compound arguments (i.e. arguments that require computation before the 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: Java Util Logging Log4j SLF4J Apache Commons Logging The plugin provides an extension point which allows to add support for other frameworks. Eclipse update site: http://dl.bintray.com/aap/lce/
About
Logging code Cleanup plugin for Eclipse
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published