From: Patrick Donnelly Date: Mon, 26 Feb 2024 16:17:42 +0000 (-0500) Subject: mds: increase debug lvl for inode listing at sr split X-Git-Tag: testing/wip-pdonnell-testing-20240411.192023-squid-debug^2~4 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=274dd7819c5b27a04bdd51d4f71f7c662ed8cd5b;p=ceph-ci.git mds: increase debug lvl for inode listing at sr split This can print a ludicrous number of lines for large cache sizes. Signed-off-by: Patrick Donnelly (cherry picked from commit 681169cb94bf990c41135251f984b3d161808ca6) --- diff --git a/src/mds/SnapRealm.cc b/src/mds/SnapRealm.cc index c5c0e6682fc..1e6c5ce2c86 100644 --- a/src/mds/SnapRealm.cc +++ b/src/mds/SnapRealm.cc @@ -353,10 +353,10 @@ void SnapRealm::split_at(SnapRealm *child) ++p; // does inode fall within the child realm? if (child->inode->is_ancestor_of(in)) { - dout(20) << " child gets " << *in << dendl; + dout(25) << " child gets " << *in << dendl; in->move_to_realm(child); } else { - dout(20) << " keeping " << *in << dendl; + dout(25) << " keeping " << *in << dendl; } } }