diff options
author | p8p <p8p@users.noreply.github.com> | 2018-08-25 04:16:01 -0700 |
---|---|---|
committer | p8p <p8p@users.noreply.github.com> | 2018-08-25 04:31:22 -0700 |
commit | 9d6539923e615014189c9281a52fad080f09a64e (patch) | |
tree | 969f60962c351ff93918b43af2634d1eb8bbd245 /src/blockchain_db | |
parent | Merge pull request #4223 (diff) | |
download | monero-9d6539923e615014189c9281a52fad080f09a64e.tar.xz |
is_hdd update
Diffstat (limited to 'src/blockchain_db')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.cpp b/src/blockchain_db/lmdb/db_lmdb.cpp index 983a0168a..230fc1d7c 100644 --- a/src/blockchain_db/lmdb/db_lmdb.cpp +++ b/src/blockchain_db/lmdb/db_lmdb.cpp @@ -1200,8 +1200,12 @@ void BlockchainLMDB::open(const std::string& filename, const int db_flags) throw DB_ERROR("Database could not be opened"); } - if (tools::is_hdd(filename.c_str())) - MCLOG_RED(el::Level::Warning, "global", "The blockchain is on a rotating drive: this will be very slow, use a SSD if possible"); + boost::optional<bool> is_hdd_result = tools::is_hdd(filename.c_str()); + if (is_hdd_result) + { + if (is_hdd_result.value()) + MCLOG_RED(el::Level::Warning, "global", "The blockchain is on a rotating drive: this will be very slow, use a SSD if possible"); + } m_folder = filename; |