Ignore:
Timestamp:
Nov 17, 2009, 4:26:04 PM (15 years ago)
Author:
mies
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/SideportListener.cpp

    r5945 r6944  
    5656
    5757string SideportListener::getEndpointDescription( const LinkID& link ) const {
    58         if( overlay == NULL ) return "";
     58        if( overlay == NULL ) {
     59                std::cerr << "Sideport: No overlay found." << std::endl;
     60                return "";
     61        }
     62        std::cerr << "WTF!!!" << std::endl;
    5963        return overlay->getEndpointDescriptor(link).toString();
    6064}
    6165
    6266string SideportListener::getEndpointDescription( const NodeID& node ) const {
    63         if( overlay == NULL ) return "";
     67        if( overlay == NULL ) {
     68                std::cerr << "Sideport: No overlay found." << std::endl;
     69                return "";
     70        }
    6471        return overlay->getEndpointDescriptor(node).toString();
    6572}
Note: See TracChangeset for help on using the changeset viewer.