Changeset 2501

Show
Ignore:
Timestamp:
10/07/08 07:18:25 (3 months ago)
Author:
dsanders
Message:

Removed some debug log statements.

Location:
trunk/otis/src/org/bandit/otis/server
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/otis/src/org/bandit/otis/server/EntityHandler.java

    r2500 r2501  
    553553                try 
    554554                { 
    555                         m_log.debug( "Calling getEntitites"); 
    556555                        entityIter = localAuthSession.getEntities( null, (attrList != null) ? attrList.iterator() : null); 
    557                         m_log.debug( "Start iterating through results"); 
    558                         int     iAttrCnt = 0; 
    559556                        while (entityIter.hasNext()) 
    560557                        { 
     
    569566                                 
    570567                                List    entityAttrList; 
    571                                 iAttrCnt++; 
    572                                 m_log.debug( "Getting attr #" + iAttrCnt); 
    573568                                if ((entityAttrList = queryAttributes( strSessionID, "Entity='" + strEntityID + "'", entity, attrList, responseMap)) != null) 
    574569                                { 
    575570                                        entityMap.put( Constants.TEMPLATE_ATTR_LIST, entityAttrList); 
    576571                                } 
    577                                 m_log.debug( "Got attr #" + iAttrCnt); 
    578572                                entityList.add( entityMap); 
    579573                        } 
    580                         m_log.debug( "Done iterating through results"); 
    581574                } 
    582575                catch (IdASException e) 
  • trunk/otis/src/org/bandit/otis/server/OtisServlet.java

    r2500 r2501  
    11641164                                Template                        template = m_templateCfg.getTemplate( strTemplateFile); 
    11651165 
    1166                                 m_log.debug( "Processing template " + strTemplateFile + " ....");                                
    11671166                                template.process( responseMap, strOut); 
    1168                                 m_log.debug( "Done processing template " + strTemplateFile); 
    11691167                                 
    11701168                                // Now output over HTTP.