Changeset 2962

Show
Ignore:
Timestamp:
04/27/06 20:18:33 (3 years ago)
Author:
madcat
Message:

Removed debug messages.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • hydranode/hncore/cgcomm/sub_modules.cpp

    r2957 r2962  
    131131        uint32_t    timer   = Utils::getVal<uint32_t>(i); 
    132132 
    133         logDebug("Received request for object " + name); 
    134133        Object *obj = Object::findObject(id); 
    135134        if (!obj) { 
     
    213212                } 
    214213                Object::Operation op(opName, args); 
    215                 logDebug( 
    216                         "Performing operation " + opName  
    217                         + " on " + obj->getName() 
    218                 ); 
    219214                obj->doOper(op); 
    220215        } 
     
    235230 
    236231void Modules::sendNotFound(uint32_t id) { 
    237         logDebug(boost::format("Object id %d was not found.") % id); 
    238  
    239232        std::ostringstream tmp; 
    240233        Utils::putVal<uint8_t>(tmp, OC_NOTFOUND); 
     
    244237 
    245238void Modules::objUpdated(Object *obj, ObjectEvent evt) { 
    246         logDebug("object was updated."); 
    247239        if (evt == OBJ_MODIFIED) { 
    248240                m_dirty.insert(obj); 
     
    254246                sendPacket(tmp.str()); 
    255247                m_dirty.erase(obj); 
    256                 logDebug("Sending OBJ_ADDED to gui."); 
    257248        } else if (evt == OBJ_REMOVED && obj->getParent()) { 
    258249                std::ostringstream tmp; 
     
    261252                Utils::putVal<uint32_t>(tmp, obj->getId()); 
    262253                sendPacket(tmp.str()); 
    263                 logDebug("Sending OBJ_REMOVED to gui."); 
    264254                m_dirty.erase(obj); 
    265255        }