Merge pull request #1340 from rebroad/DBFlushDurationReport

Report how long DBFlush took.
This commit is contained in:
Jeff Garzik 2012-05-17 17:21:01 -07:00
commit 6c513a45d5
1 changed files with 2 additions and 0 deletions

View File

@ -289,6 +289,7 @@ bool CDB::Rewrite(const string& strFile, const char* pszSkip)
void DBFlush(bool fShutdown)
{
int64 nStart = GetTimeMillis();
// Flush log data to the actual data file
// on all files that are not in use
printf("DBFlush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started");
@ -318,6 +319,7 @@ void DBFlush(bool fShutdown)
else
mi++;
}
printf("DBFlush(%s)%s ended %15"PRI64d"ms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started", GetTimeMillis() - nStart);
if (fShutdown)
{
char** listp;