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: v18.2.4~54^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ee4f92eb2dfafe4a804ac69680ac1a2dcb1e8e0a;p=ceph.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 c5c0e6682fcd..1e6c5ce2c86d 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; } } }