log how long LoadExternalBlockFile() takes in ms (Benchmark)

This commit is contained in:
Philip Kaufmann 2012-08-17 00:14:40 +02:00
parent 0825aee8f4
commit 746f502a79
1 changed files with 3 additions and 1 deletions

View File

@ -2146,6 +2146,8 @@ void PrintBlockTree()
bool LoadExternalBlockFile(FILE* fileIn)
{
int64 nStart = GetTimeMillis();
int nLoaded = 0;
{
LOCK(cs_main);
@ -2198,7 +2200,7 @@ bool LoadExternalBlockFile(FILE* fileIn)
__PRETTY_FUNCTION__);
}
}
printf("Loaded %i blocks from external file\n", nLoaded);
printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
return nLoaded > 0;
}