cephtool: aesthetic change to ceph -w output

* no seq
* name, not ip addr

Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
Sage Weil 2012-05-17 20:18:35 -07:00
parent 13a9a15248
commit 78d0d0976b

View File

@ -488,7 +488,7 @@ void Subscriptions::handle_log(MLog *m)
std::deque<LogEntry>::iterator it = m->entries.begin();
for (; it != m->entries.end(); it++) {
LogEntry e = *it;
cout << e.stamp << " " << e.seq << " " << e.who
cout << e.stamp << " " << e.who.name
<< " " << e.type << " " << e.msg << std::endl;
}