From 9e1cf70ee8a98af3ce91e7ff7e42dbe6ae06bfcc Mon Sep 17 00:00:00 2001 From: Mykola Golub Date: Sun, 7 Feb 2016 12:50:24 +0200 Subject: [PATCH] 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 --- src/cls/journal/cls_journal_types.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cls/journal/cls_journal_types.cc b/src/cls/journal/cls_journal_types.cc index 8a94d10530ad2..9d8af00957a9d 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; } -- 2.47.3