From: Mykola Golub Date: Sun, 7 Feb 2016 10:50:24 +0000 (+0200) Subject: cls::journal: don't print client data X-Git-Tag: v10.1.0~343^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9e1cf70ee8a98af3ce91e7ff7e42dbe6ae06bfcc;p=ceph.git cls::journal: don't print client data It makes `rbd journal status` output look ugly. It is a temporary solution and is going to be improved in the future (it could be useful to see data but decoded). Signed-off-by: Mykola Golub --- diff --git a/src/cls/journal/cls_journal_types.cc b/src/cls/journal/cls_journal_types.cc index 8a94d10530ad..9d8af00957a9 100644 --- a/src/cls/journal/cls_journal_types.cc +++ b/src/cls/journal/cls_journal_types.cc @@ -155,9 +155,6 @@ std::ostream &operator<<(std::ostream &os, std::ostream &operator<<(std::ostream &os, const Client &client) { os << "[id=" << client.id << ", " - << "data="; - client.data.hexdump(os); - os << ", " << "commit_position=" << client.commit_position << "]"; return os; }