]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mds: increase debug lvl for inode listing at sr split
authorPatrick Donnelly <pdonnell@redhat.com>
Mon, 26 Feb 2024 16:17:42 +0000 (11:17 -0500)
committerPatrick Donnelly <pdonnell@redhat.com>
Wed, 3 Apr 2024 17:01:09 +0000 (13:01 -0400)
This can print a ludicrous number of lines for large cache sizes.

Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
(cherry picked from commit 681169cb94bf990c41135251f984b3d161808ca6)

src/mds/SnapRealm.cc

index c5c0e6682fcd335cc3ba747523251c375d44e4ce..1e6c5ce2c86dc1d81a77850e992f13b473221c73 100644 (file)
@@ -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;
     }
   }
 }