From ce71652eed746b865362cd92f08c97f1fcec8388 Mon Sep 17 00:00:00 2001 From: Michal Simon Date: Mon, 28 May 2018 14:32:56 +0200 Subject: [PATCH] [XrdCl] Explicitly log request retries, closes #690 --- src/XrdCl/XrdClXRootDMsgHandler.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/XrdCl/XrdClXRootDMsgHandler.cc b/src/XrdCl/XrdClXRootDMsgHandler.cc index d4a6a4564d5..fc5a801b3fa 100644 --- a/src/XrdCl/XrdClXRootDMsgHandler.cc +++ b/src/XrdCl/XrdClXRootDMsgHandler.cc @@ -1969,7 +1969,13 @@ namespace XrdCl return Status(); } else + { + log->Info( XRootDMsg, "[%s] Retrying request: %s.", + pUrl.GetHostId().c_str(), + pRequest->GetDescription().c_str() ); + return pPostMaster->Send( pUrl, pRequest, this, true, pExpiration ); + } } //----------------------------------------------------------------------------