Skip to content

Commit

Permalink
[XrdCl] Make the libevent poller wrapper print the timeout settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ljanyst committed Jul 12, 2013
1 parent 4794549 commit b9c759e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/XrdCl/XrdClPollerLibEvent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ namespace XrdCl
if( helper->readEnabled )
return true;

log->Dump( PollerMsg, "%s Enable read notifications",
socket->GetName().c_str() );
log->Dump( PollerMsg, "%s Enable read notifications, timeout: %d",
socket->GetName().c_str(), timeout );

//------------------------------------------------------------------------
// Create the read event if it doesn't exist
Expand Down Expand Up @@ -541,8 +541,8 @@ namespace XrdCl
if( helper->writeEnabled )
return true;

log->Dump( PollerMsg, "%s Enable write notifications",
socket->GetName().c_str() );
log->Dump( PollerMsg, "%s Enable write notifications, timeout: %d",
socket->GetName().c_str(), timeout );

//------------------------------------------------------------------------
// Create the read event if it doesn't exist
Expand Down

0 comments on commit b9c759e

Please sign in to comment.