Skip to content

Commit 3548489

Browse files
committed
crimson/osd/watch: don't print bufferlists
The bufferlists clutter the logs and don't infrom of anything useful: ``` DEBUG 2023-05-26 23:36:29,780 [shard 2] osd - send_completion sending notify replies: {notify_reply_t{watcher_gid=4220, watcher_cookie=139786421930752, bl=buffer::list(len=0, )}, notify_reply_t{watcher_gid=4220, watcher_cookie=139786422032096, bl=buffer::list(len=0, )}} ``` Signed-off-by: Matan Breizman <[email protected]>
1 parent b1c05f9 commit 3548489

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/crimson/osd/watch.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ bool notify_reply_t::operator<(const notify_reply_t& rhs) const
231231
std::ostream &operator<<(std::ostream &out, const notify_reply_t &rhs)
232232
{
233233
out << "notify_reply_t{watcher_gid=" << rhs.watcher_gid
234-
<< ", watcher_cookie=" << rhs.watcher_cookie
235-
<< ", bl=" << rhs.bl << "}";
234+
<< ", watcher_cookie=" << rhs.watcher_cookie << "}";
236235
return out;
237236
}
238237

0 commit comments

Comments
 (0)