summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Logging
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-02-03 20:24:25 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-02-03 20:24:25 -0500
commit54e7b5b846dfd542af3c8a904a57fc5ccc44ecb5 (patch)
tree622a3d1670e12426e16df9eedb75ff6ad8c3cda8 /src/SMAPI/Framework/Logging
parente81e07594ca4863f9feb94c882b59ba7cc00a0ae (diff)
downloadSMAPI-54e7b5b846dfd542af3c8a904a57fc5ccc44ecb5.tar.gz
SMAPI-54e7b5b846dfd542af3c8a904a57fc5ccc44ecb5.tar.bz2
SMAPI-54e7b5b846dfd542af3c8a904a57fc5ccc44ecb5.zip
enable aggressive memory optimizations by default (#757)
The new approach should be safe, and no errors were reported so far by alpha testers.
Diffstat (limited to 'src/SMAPI/Framework/Logging')
-rw-r--r--src/SMAPI/Framework/Logging/LogManager.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/Logging/LogManager.cs b/src/SMAPI/Framework/Logging/LogManager.cs
index 5f191873..2c7be399 100644
--- a/src/SMAPI/Framework/Logging/LogManager.cs
+++ b/src/SMAPI/Framework/Logging/LogManager.cs
@@ -295,8 +295,6 @@ namespace StardewModdingAPI.Framework.Logging
// warnings
if (!settings.CheckForUpdates)
this.Monitor.Log("You disabled update checks, so you won't be notified of new SMAPI or mod updates. Running an old version of SMAPI is not recommended. You can undo this by reinstalling SMAPI.", LogLevel.Warn);
- if (settings.AggressiveMemoryOptimizations)
- this.Monitor.Log("You enabled aggressive memory optimizations. This is an experimental option which may cause errors or crashes. You can undo this by reinstalling SMAPI.", LogLevel.Warn);
if (!settings.RewriteMods)
this.Monitor.Log("You disabled rewriting broken mods, so many older mods may fail to load. You can undo this by reinstalling SMAPI.", LogLevel.Info);
if (!this.Monitor.WriteToConsole)