diff options
Diffstat (limited to 'db.cpp')
-rw-r--r-- | db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ void DBFlush(bool fShutdown) {
// Flush log data to the actual data file
// on all files that are not in use
- printf("DBFlush(%s)\n", fShutdown ? "true" : "false");
+ printf("DBFlush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started");
if (!fDbEnvInit)
return;
CRITICAL_BLOCK(cs_db)
|