Performance: logger calls are not optimal
-----------------------------------------

                 Key: SCM-411
                 URL: http://jira.codehaus.org/browse/SCM-411
             Project: Maven SCM
          Issue Type: Task
          Components: maven-scm-api, maven-scm-provider-accurev, 
maven-scm-provider-bazaar, maven-scm-provider-clearcase, 
maven-scm-provider-cvs, maven-scm-provider-git, maven-scm-provider-local, 
maven-scm-provider-mercurial (hg), maven-scm-provider-monotone, 
maven-scm-provider-perforce, maven-scm-provider-pvcs, 
maven-scm-provider-starteam, maven-scm-provider-svn, 
maven-scm-provider-synergy, maven-scm-provider-vss
    Affects Versions: 1.1
            Reporter: Vincent Siveton


Several logger calls are getLogger().debug()
Should be replace by:

{noformat}
if ( getLogger().isDebugEnabled() )
{
    getLogger().debug( ... );
}
{noformat}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to