aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-02-15 21:47:55 -0500
committerluigi1111 <luigi1111w@gmail.com>2021-02-15 21:47:55 -0500
commit080358ebef569d18a6b4951ffb2c4e91b412c6b1 (patch)
tree487da0cea22b8269092084f17f54c9d61ef6464c
parentMerge pull request #7265 (diff)
parentOnly INFO log for short seed words with ALLOW_SHORT_WORDS active (diff)
downloadmonero-080358ebef569d18a6b4951ffb2c4e91b412c6b1.tar.xz
Merge pull request #7273
e7f5845 Only INFO log for short seed words with ALLOW_SHORT_WORDS active (rbrunner7)
-rw-r--r--src/mnemonics/language_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mnemonics/language_base.h b/src/mnemonics/language_base.h
index bf8793aa2..1aa869e45 100644
--- a/src/mnemonics/language_base.h
+++ b/src/mnemonics/language_base.h
@@ -129,7 +129,7 @@ namespace Language
if ((*it).size() < unique_prefix_length)
{
if (flags & ALLOW_SHORT_WORDS)
- MWARNING(language_name << " word '" << *it << "' is shorter than its prefix length, " << unique_prefix_length);
+ MINFO(language_name << " word '" << *it << "' is shorter than its prefix length, " << unique_prefix_length);
else
throw std::runtime_error("Too short word in " + language_name + " word list: " + *it);
}