Log package cache size on startup

This commit is contained in:
Martchus 2022-04-20 22:47:29 +02:00
parent 26caa78956
commit a780b26ef6
1 changed files with 2 additions and 1 deletions

View File

@ -700,8 +700,9 @@ void ServiceSetup::restoreState()
}
// open LMDB storage
cout << Phrases::InfoMessage << "Opening config LMDB file: " << dbPath << " (max DBs: " << maxDbs << ')' << Phrases::EndFlush;
cout << Phrases::InfoMessage << "Opening config LMDB file: " << dbPath << " (max DBs: " << maxDbs << ')' << Phrases::End;
config.initStorage(dbPath.data(), maxDbs);
cout << Phrases::SubMessage << "Package cache limit: " << packageCacheLimit << Phrases::End;
config.setPackageCacheLimit(packageCacheLimit);
cout << Phrases::InfoMessage << "Opening actions LMDB file: " << building.dbPath << Phrases::EndFlush;
building.initStorage(building.dbPath.data());