diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-28 11:01:34 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-28 11:01:34 +0100 |
commit | bc8b78980d9b4479b40996d7132547a96586de3c (patch) | |
tree | 048fca07c0d7b3c50e63fb0135d1197c7dfb46a2 /common/storage_lmdb.cpp | |
parent | e7ca343f3322d1fb903f5b39d140167601e6f561 (diff) | |
download | sink-bc8b78980d9b4479b40996d7132547a96586de3c.tar.gz sink-bc8b78980d9b4479b40996d7132547a96586de3c.zip |
Less debug output
Diffstat (limited to 'common/storage_lmdb.cpp')
-rw-r--r-- | common/storage_lmdb.cpp | 3 |
1 files changed, 1 insertions, 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) : | |||
734 | bool requestedRead = m == ReadOnly; | 734 | bool requestedRead = m == ReadOnly; |
735 | auto t = Transaction(new Transaction::Private(requestedRead, nullptr, name, env, noLock)); | 735 | auto t = Transaction(new Transaction::Private(requestedRead, nullptr, name, env, noLock)); |
736 | for (const auto &db : t.getDatabaseNames()) { | 736 | for (const auto &db : t.getDatabaseNames()) { |
737 | SinkLog() << "Opening initial db: " << db; | ||
738 | //Get dbi to store for future use. | 737 | //Get dbi to store for future use. |
739 | t.openDatabase(db); | 738 | t.openDatabase(db); |
740 | } | 739 | } |
741 | //To persist the dbis | 740 | //To persist the dbis (this is also necessary for read-only transactions) |
742 | t.commit(); | 741 | t.commit(); |
743 | } | 742 | } |
744 | } | 743 | } |