Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10853


Ignore:
Timestamp:
Nov 24, 2015, 10:47:44 PM (8 years ago)
Author:
landauf
Message:

re-added debug-output (after reviewing r10817). why was it removed? did clang complain about it?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/network/LANDiscoverable.cc

    r10817 r10853  
    109109      {
    110110        case ENET_EVENT_TYPE_CONNECT:
    111             //orxout(verbose, context::network) << "Received LAN discovery connect from client " << event.peer->host->receivedAddress << endl;
     111            orxout(verbose, context::network) << "Received LAN discovery connect from client " << event.peer->host->receivedAddress << endl;
    112112            break;
    113113        case ENET_EVENT_TYPE_DISCONNECT:
     
    117117          if( strcmp( LAN_DISCOVERY_MESSAGE, (char*)event.packet->data ) == 0 )      // check for a suitable orxonox client
    118118          {
    119             //orxout(internal_info, context::network) << "Received LAN discovery message from client " << event.peer->host->receivedAddress << endl;
     119            orxout(internal_info, context::network) << "Received LAN discovery message from client " << event.peer->host->receivedAddress << endl;
    120120            packet::ServerInformation info;
    121121            info.setServerName(this->ownName);
Note: See TracChangeset for help on using the changeset viewer.