Change the server digest warning message

This commit is contained in:
Michael VanOverbeek 2021-10-31 13:59:23 -04:00
commit 76ed7a736d

View file

@ -45,7 +45,8 @@ namespace LBPUnion.ProjectLighthouse
if (string.IsNullOrWhiteSpace(serverDigestKey))
{
Logger.Log(
"SERVER_DIGEST_KEY environment variable wasn't set, so server digest headers won't be set. This will break LBP 1 and LBP 3."
"The SERVER_DIGEST_KEY environment variable wasn't set, so digest headers won't be set or verified. This will prevent LBP 1 and LBP 3 from working. " +
"To increase security, it is recommended that you find and set this variable."
);
computeDigests = false;
}