From ff9843bb34c25ad521baffae2d973042005ca9f8 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Sun, 3 Apr 2016 10:52:10 -0400 Subject: [PATCH] Striper: reduce assemble_result log level Signed-off-by: Jason Dillaman --- src/osdc/Striper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osdc/Striper.cc b/src/osdc/Striper.cc index 851f0673be4..2c835209eeb 100644 --- a/src/osdc/Striper.cc +++ b/src/osdc/Striper.cc @@ -402,7 +402,7 @@ void Striper::StripedReadResult::assemble_result(CephContext *cct, char *buffer, uint64_t end = p->first + p->second.second; while (p != partial.rend()) { // sanity check - ldout(cct, 0) << "assemble_result(" << this << ") " << p->first << "~" << p->second.second + ldout(cct, 20) << "assemble_result(" << this << ") " << p->first << "~" << p->second.second << " " << p->second.first.length() << " bytes" << dendl; assert(p->first == end - p->second.second);