summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-08-03 12:00:15 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2021-08-03 12:00:15 -0400
commitcf261ff36ee0c96acd0a8b0b233517991740b8cf (patch)
tree5aff50b4ae840941c4f263eb47e688f041af966b /src/SMAPI
parent848460a34e105f08dec506e97655de7f30c6a493 (diff)
downloadSMAPI-cf261ff36ee0c96acd0a8b0b233517991740b8cf.tar.gz
SMAPI-cf261ff36ee0c96acd0a8b0b233517991740b8cf.tar.bz2
SMAPI-cf261ff36ee0c96acd0a8b0b233517991740b8cf.zip
increase software conflict message to warning level to simplify troubleshooting
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Framework/SCore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs
index b826789d..3f97bd4e 100644
--- a/src/SMAPI/Framework/SCore.cs
+++ b/src/SMAPI/Framework/SCore.cs
@@ -1323,7 +1323,7 @@ namespace StardewModdingAPI.Framework
.ToArray();
if (installedNames.Any())
- this.Monitor.Log($" Found {string.Join(" and ", installedNames)} installed, which can conflict with SMAPI. If you experience errors or crashes, try disabling that software or adding an exception for SMAPI / Stardew Valley.");
+ this.Monitor.Log($"Found {string.Join(" and ", installedNames)} installed, which may conflict with SMAPI. If you experience errors or crashes, try disabling that software or adding an exception for SMAPI and Stardew Valley.", LogLevel.Warn);
else
this.Monitor.Log(" None found!");
}