Browse Source

log start and end of Shutdown()

- could be helpful when debugging shutdown related problems
pull/145/head
Philip Kaufmann 11 years ago
parent
commit
ced3c24816
  1. 2
      src/init.cpp

2
src/init.cpp

@ -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");
}
//

Loading…
Cancel
Save