From: Samuel Just Date: Wed, 5 Jan 2022 23:46:33 +0000 (+0000) Subject: crimson/os/seastore/cache: fix debug macro usage X-Git-Tag: v17.1.0~125^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F44475%2Fhead;p=ceph.git crimson/os/seastore/cache: fix debug macro usage Introduced via conflict between 277e57 and 632916. Fixes: https://tracker.ceph.com/issues/53783 Signed-off-by: Samuel Just --- diff --git a/src/crimson/os/seastore/cache.h b/src/crimson/os/seastore/cache.h index 42aaa4105a4..ba8faaea4fb 100644 --- a/src/crimson/os/seastore/cache.h +++ b/src/crimson/os/seastore/cache.h @@ -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++)); } }