diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-03 15:51:38 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-03 15:51:38 -0400 |
commit | d971514a3d316e1466db51f9709635ce6d4e6b91 (patch) | |
tree | 0026b77bce3c293ec9c3d1564251eac528babbd3 /src/StardewModdingAPI/Framework | |
parent | b86d9f7c0ebdd3bc1200836137f92eaa3c9910ec (diff) | |
download | SMAPI-d971514a3d316e1466db51f9709635ce6d4e6b91.tar.gz SMAPI-d971514a3d316e1466db51f9709635ce6d4e6b91.tar.bz2 SMAPI-d971514a3d316e1466db51f9709635ce6d4e6b91.zip |
fix '.dll.dll' in logs (#355)
Diffstat (limited to 'src/StardewModdingAPI/Framework')
-rw-r--r-- | src/StardewModdingAPI/Framework/ModLoading/AssemblyLoader.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/Framework/ModLoading/AssemblyLoader.cs b/src/StardewModdingAPI/Framework/ModLoading/AssemblyLoader.cs index e6ec21a6..9c642bef 100644 --- a/src/StardewModdingAPI/Framework/ModLoading/AssemblyLoader.cs +++ b/src/StardewModdingAPI/Framework/ModLoading/AssemblyLoader.cs @@ -91,7 +91,7 @@ namespace StardewModdingAPI.Framework.ModLoading if (changed) { if (!oneAssembly) - this.Monitor.Log($" Loading {assembly.File.Name}.dll (rewritten in memory)...", LogLevel.Trace); + this.Monitor.Log($" Loading {assembly.File.Name} (rewritten in memory)...", LogLevel.Trace); using (MemoryStream outStream = new MemoryStream()) { assembly.Definition.Write(outStream); @@ -102,7 +102,7 @@ namespace StardewModdingAPI.Framework.ModLoading else { if (!oneAssembly) - this.Monitor.Log($" Loading {assembly.File.Name}.dll...", LogLevel.Trace); + this.Monitor.Log($" Loading {assembly.File.Name}...", LogLevel.Trace); lastAssembly = Assembly.UnsafeLoadFrom(assembly.File.FullName); } } |