aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-05-06 00:30:39 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-05-06 00:30:39 -0500
commit98e3802b267fa5464e4e0a3d3c512e7e40e15fe2 (patch)
tree5335713baa6fc5eabd67c6996c3f4e8389eebcec /src
parentMerge pull request #6481 (diff)
parentmessage_store: don't print an error when there is no mms file (diff)
downloadmonero-98e3802b267fa5464e4e0a3d3c512e7e40e15fe2.tar.xz
Merge pull request #6484
e7d0105 message_store: don't print an error when there is no mms file (moneromooo-monero)
Diffstat (limited to 'src')
-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;
}