Skip to content
Snippets Groups Projects
Commit 43d1885b authored by Eric Cano's avatar Eric Cano
Browse files

Added more information to xrootd exceptions.

parent 6927996d
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,9 @@ XrootCl::XrootCl(const XrdCl::XRootDStatus& status, const std::string & what) {
std::stringstream w;
if (what.size())
w << what << " ";
w << status.ToString();
w << status.ToStr() << " code:" << status.code
<< " errNo:" << status.errNo
<< " status:" << status.status;
getMessage().str(w.str());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment