]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/os/seastore/cache: fix debug macro usage 44475/head
authorSamuel Just <sjust@redhat.com>
Wed, 5 Jan 2022 23:46:33 +0000 (23:46 +0000)
committerSamuel Just <sjust@redhat.com>
Wed, 5 Jan 2022 23:46:33 +0000 (23:46 +0000)
Introduced via conflict between 277e57 and 632916.

Fixes: https://tracker.ceph.com/issues/53783
Signed-off-by: Samuel Just <sjust@redhat.com>
src/crimson/os/seastore/cache.h

index 42aaa4105a4d21abb03ecba07eb3c6d62fc75411..ba8faaea4fbbdabcb8026dd1f1cfb7f11cb3c5d2 100644 (file)
@@ -782,7 +782,7 @@ private:
     void clear() {
       LOG_PREFIX(Cache::LRU::clear);
       for (auto iter = lru.begin(); iter != lru.end();) {
-       DEBUG("clearing {}", *iter);
+       SUBDEBUG(seastore_cache, "clearing {}", *iter);
        remove_from_lru(*(iter++));
       }
     }