Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 18, 2009, 5:13:38 PM (15 years ago)
Author:
scheusso
Message:

changed some debug output
removed some uneccessary "multi"threading
some enhancements in Connection

Location:
code/branches/netp6/src/network/packet
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/netp6/src/network/packet/ClassID.cc

    r3214 r3302  
    142142    classname = temp+2*sizeof(uint32_t);
    143143    id=ClassByString( std::string((const char*)classname) );
    144     COUT(0) << "processing classid: " << networkID << " name: " << classname << " id: " << id << std::endl;
     144    COUT(3) << "processing classid: " << networkID << " name: " << classname << " id: " << id << std::endl;
    145145    if(id==NULL){
    146146      COUT(0) << "Recieved a bad classname" << endl;
  • code/branches/netp6/src/network/packet/FunctionIDs.cc

    r3214 r3302  
    132132    stringsize = *(uint32_t*)(temp+sizeof(uint32_t));
    133133    functionname = temp+2*sizeof(uint32_t);
    134     COUT(0) << "processing functionid: " << networkID << " name: " << functionname << std::endl;
     134    COUT(3) << "processing functionid: " << networkID << " name: " << functionname << std::endl;
    135135    NetworkFunctionBase::setNetworkID((const char*)functionname, networkID);
    136136    temp += 2*sizeof(uint32_t) + stringsize;
Note: See TracChangeset for help on using the changeset viewer.