From 62d2e4e003a26550ebbe039c5d1e450841d8059f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 7 Nov 2024 15:36:50 -0800 Subject: Removed debugging output. Some cleanup work may still be outstanding. --- src/unstable/cachebase.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/unstable') diff --git a/src/unstable/cachebase.h b/src/unstable/cachebase.h index 9ac1b8c..830f5fe 100644 --- a/src/unstable/cachebase.h +++ b/src/unstable/cachebase.h @@ -32,15 +32,15 @@ namespace Bu bDeleted( false ), pObject( pObject ) { - Bu::println("CacheEntry::CacheEntry: registering pObject (0x%1)"). - arg( reinterpret_cast(pObject), Bu::Fmt::hex() ); + //Bu::println("CacheEntry::CacheEntry: registering pObject (0x%1)"). + // arg( reinterpret_cast(pObject), Bu::Fmt::hex() ); } virtual ~CacheEntry() { mEntry.lock(); - Bu::println("CacheEntry::~CacheEntry: deleting pObject (0x%1)"). - arg( reinterpret_cast(pObject), Bu::Fmt::hex() ); + //Bu::println("CacheEntry::~CacheEntry: deleting pObject (0x%1)"). + // arg( reinterpret_cast(pObject), Bu::Fmt::hex() ); delete pObject; mEntry.unlock(); } -- cgit v1.2.3