Merge pull request #7273

e7f5845 Only INFO log for short seed words with ALLOW_SHORT_WORDS active (rbrunner7)
pull/7376/head
luigi1111 3 years ago
commit 080358ebef
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -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);
}

Loading…
Cancel
Save