summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Log.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-11-14 23:10:12 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-11-14 23:10:12 -0500
commit33e6a6db23878d998a60757ae60789f21718673e (patch)
treeb50414fee3206b1c55bbc2a7aeafa71a9c7c8d91 /src/StardewModdingAPI/Log.cs
parent54c0f26d5d6faaf71da4eb91bf28203390d79e71 (diff)
downloadSMAPI-33e6a6db23878d998a60757ae60789f21718673e.tar.gz
SMAPI-33e6a6db23878d998a60757ae60789f21718673e.tar.bz2
SMAPI-33e6a6db23878d998a60757ae60789f21718673e.zip
tweak deprecation messages
Diffstat (limited to 'src/StardewModdingAPI/Log.cs')
-rw-r--r--src/StardewModdingAPI/Log.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Log.cs b/src/StardewModdingAPI/Log.cs
index 9cb32576..02455f3a 100644
--- a/src/StardewModdingAPI/Log.cs
+++ b/src/StardewModdingAPI/Log.cs
@@ -178,7 +178,7 @@ namespace StardewModdingAPI
/// <summary>Raise a deprecation warning.</summary>
private static void WarnDeprecated()
{
- Program.DeprecationManager.Warn("an unknown mod", $"the {nameof(Log)} class", "1.1", DeprecationLevel.Notice);
+ Program.DeprecationManager.Warn($"the {nameof(Log)} class", "1.1", DeprecationLevel.Notice);
}
/// <summary>Get the name of the mod logging a message from the stack.</summary>