summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/bbstored/HousekeepStoreAccount.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/bbstored/HousekeepStoreAccount.cpp b/bin/bbstored/HousekeepStoreAccount.cpp
index 5d4291de..166a58e6 100644
--- a/bin/bbstored/HousekeepStoreAccount.cpp
+++ b/bin/bbstored/HousekeepStoreAccount.cpp
@@ -87,6 +87,9 @@ HousekeepStoreAccount::~HousekeepStoreAccount()
// --------------------------------------------------------------------------
void HousekeepStoreAccount::DoHousekeeping(bool KeepTryingForever)
{
+ BOX_TRACE("Starting housekeeping on account " <<
+ BOX_FORMAT_OBJECTID(mAccountID));
+
// Attempt to lock the account
std::string writeLockFilename;
StoreStructure::MakeWriteLockFilename(mStoreRoot, mStoreDiscSet,
@@ -355,6 +358,9 @@ void HousekeepStoreAccount::DoHousekeeping(bool KeepTryingForever)
// Explicity release the lock (would happen automatically on
// going out of scope, included for code clarity)
writeLock.ReleaseLock();
+
+ BOX_TRACE("Finished housekeeping on account " <<
+ BOX_FORMAT_OBJECTID(mAccountID));
}