1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Remove excessive logging (#2055)

This commit is contained in:
benthompson15
2021-07-20 10:22:22 -05:00
committed by GitHub
parent c5502c02fa
commit ce9207cd7f

View File

@ -601,15 +601,10 @@ bool load_encryption_keys()
{
if (!ret.key.empty())
{
CSPasswdLogging::get()->log(LOG_INFO,"Using encrypted passwords. Encryption key read from '%s'.", path.c_str());
//CSPasswdLogging::get()->log(LOG_INFO,"Using encrypted passwords. Encryption key read from '%s'.", path.c_str());
this_unit.key = move(ret.key);
this_unit.iv = move(ret.iv);
}
else
{
CSPasswdLogging::get()->log(LOG_INFO,"Password encryption key file '%s' not found, using configured passwords as "
"plaintext.", path.c_str());
}
return ret.ok;
}
}