Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2557


Ignore:
Timestamp:
Dec 31, 2008, 10:47:09 AM (15 years ago)
Author:
scheusso
Message:

removed debug output from slave-thread

Location:
code/branches/presentation/src/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/network/ClientConnection.cc

    r2171 r2557  
    172172        break;
    173173      case ENET_EVENT_TYPE_RECEIVE:
    174         COUT(5) << "Cl.Con: receiver-Thread while loop: got new packet" << std::endl;
     174        //COUT(5) << "Cl.Con: receiver-Thread while loop: got new packet" << std::endl;
    175175        if ( !processData(event) ) COUT(2) << "Current packet was not pushed to packetBuffer -> ev ongoing SegFault" << std::endl;
    176         COUT(5) << "Cl.Con: processed Data in receiver-thread while loop" << std::endl;
     176        //COUT(5) << "Cl.Con: processed Data in receiver-thread while loop" << std::endl;
    177177        event = new ENetEvent;
    178178        break;
  • code/branches/presentation/src/network/ConnectionManager.cc

    r2371 r2557  
    206206        // log handling ================
    207207        case ENET_EVENT_TYPE_CONNECT:
    208           COUT(3) << "adding event_type_connect to queue" << std::endl;
     208          //COUT(3) << "adding event_type_connect to queue" << std::endl;
    209209        case ENET_EVENT_TYPE_DISCONNECT:
    210210          //addClient(event);
     
    214214        case ENET_EVENT_TYPE_RECEIVE:
    215215          //std::cout << "received data" << std::endl;
    216           COUT(5) << "Con.Man: receive event has occured" << std::endl;
     216          //COUT(5) << "Con.Man: receive event has occured" << std::endl;
    217217          // only add, if client has connected yet and not been disconnected
    218218          //if(head_->findClient(&event->peer->address))
Note: See TracChangeset for help on using the changeset viewer.