From 7eb15ce27ee69fc4555c6b493eeead735f97f550 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 28 Sep 2011 13:54:37 -0700 Subject: [PATCH] ceph: make --concise hide 'N byte written' message Signed-off-by: Sage Weil --- src/tools/ceph.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/ceph.cc b/src/tools/ceph.cc index d6026390241..b00685b6b79 100644 --- a/src/tools/ceph.cc +++ b/src/tools/ceph.cc @@ -195,7 +195,8 @@ int main(int argc, const char **argv) << cpp_strerror(err) << dendl; goto out; } - derr << " wrote " << obl.length() << " byte payload to " << out_file << dendl; + if (!concise) + cout << " wrote " << obl.length() << " byte payload to " << out_file << std::endl; } } } -- 2.47.3