diff options
Diffstat (limited to 'filecache.h')
-rw-r--r-- | filecache.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filecache.h b/filecache.h index 5c1e83d..eaf9739 100644 --- a/filecache.h +++ b/filecache.h @@ -42,11 +42,11 @@ public: ptr_type get( key_type const& key ) { cMutexLock lock( &m_mutex ); - dsyslog( "vdrlive::FileCache::get( %s )", key.c_str() ); - dsyslog( "vdrlive::FileCache had %u entries (weight: %u)", count(), weight() ); + // dsyslog( "vdrlive::FileCache::get( %s )", key.c_str() ); + // dsyslog( "vdrlive::FileCache had %u entries (weight: %u)", count(), weight() ); ptr_type result = base_type::get( key ); - dsyslog( "vdrlive::FileCache now has %u entries (weight: %u)", count(), weight() ); - dsyslog( "vdrlive::FileCache::get( %s ) = %p", key.c_str(), result.get() ); + // dsyslog( "vdrlive::FileCache now has %u entries (weight: %u)", count(), weight() ); + // dsyslog( "vdrlive::FileCache::get( %s ) = %p", key.c_str(), result.get() ); return result; } |