log start and end of Shutdown()

- could be helpful when debugging shutdown related problems
This commit is contained in:
Philip Kaufmann 2013-10-01 09:44:56 +02:00
parent 19e5ae7369
commit ced3c24816

View file

@ -100,6 +100,7 @@ static CCoinsViewDB *pcoinsdbview;
void Shutdown()
{
LogPrintf("Shutdown : In progress...\n");
static CCriticalSection cs_Shutdown;
TRY_LOCK(cs_Shutdown, lockShutdown);
if (!lockShutdown) return;
@ -130,6 +131,7 @@ void Shutdown()
UnregisterAllWallets();
if (pwalletMain)
delete pwalletMain;
LogPrintf("Shutdown : done\n");
}
//