Merge pull request #1001 from dachary/wip-forward-tid

messages: add tid to string form of MForward

Reviewed-by: Sage Weil <sage@inktank.com>
This commit is contained in:
Sage Weil 2013-12-27 07:59:43 -08:00
commit b8f42b6b4d

View File

@ -82,6 +82,7 @@ public:
void print(ostream& o) const {
if (msg)
o << "forward(" << *msg << " caps " << client_caps
<< " tid " << tid
<< " con_features " << con_features << ") to leader";
else o << "forward(??? ) to leader";
}