From bc8b78980d9b4479b40996d7132547a96586de3c Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 28 Feb 2017 11:01:34 +0100 Subject: Less debug output --- common/storage_lmdb.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/storage_lmdb.cpp b/common/storage_lmdb.cpp index 31aaebf..ed385ad 100644 --- a/common/storage_lmdb.cpp +++ b/common/storage_lmdb.cpp @@ -734,11 +734,10 @@ DataStore::Private::Private(const QString &s, const QString &n, AccessMode m) : bool requestedRead = m == ReadOnly; auto t = Transaction(new Transaction::Private(requestedRead, nullptr, name, env, noLock)); for (const auto &db : t.getDatabaseNames()) { - SinkLog() << "Opening initial db: " << db; //Get dbi to store for future use. t.openDatabase(db); } - //To persist the dbis + //To persist the dbis (this is also necessary for read-only transactions) t.commit(); } } -- cgit v1.2.3