log start and end of Shutdown()
- could be helpful when debugging shutdown related problems
This commit is contained in:
parent
19e5ae7369
commit
ced3c24816
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue