aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/message_store.cpp
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-04-27 15:43:22 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-04-27 15:44:29 +0000
commite7d01056f4b50dd20bf61fa535047d91efddd23a (patch)
treebf23a6da353900e4b6f671b7c9d43e5c6e5f84df /src/wallet/message_store.cpp
parentMerge pull request #6470 (diff)
downloadmonero-e7d01056f4b50dd20bf61fa535047d91efddd23a.tar.xz
message_store: don't print an error when there is no mms file
It confuses people
Diffstat (limited to '')
-rw-r--r--src/wallet/message_store.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/message_store.cpp b/src/wallet/message_store.cpp
index 1bd462ef5..25a8bd4ef 100644
--- a/src/wallet/message_store.cpp
+++ b/src/wallet/message_store.cpp
@@ -724,7 +724,7 @@ void message_store::read_from_file(const multisig_wallet_state &state, const std
{
// Simply do nothing if the file is not there; allows e.g. easy recovery
// from problems with the MMS by deleting the file
- MERROR("No message store file found: " << filename);
+ MINFO("No message store file found: " << filename);
return;
}