diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-24 19:49:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-24 19:49:34 -0400 |
commit | ebc603844a3931bedbd512761ba8f152a4f5a09c (patch) | |
tree | bdf4744868a9899eaa015091a0d1c57813b3fb86 /src/SMAPI/Program.cs | |
parent | 1c10e54d050b0b3c869992848b912962da0b8304 (diff) | |
download | SMAPI-ebc603844a3931bedbd512761ba8f152a4f5a09c.tar.gz SMAPI-ebc603844a3931bedbd512761ba8f152a4f5a09c.tar.bz2 SMAPI-ebc603844a3931bedbd512761ba8f152a4f5a09c.zip |
update to Mono.Cecil 0.10
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r-- | src/SMAPI/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index 53f3749a..7b5176a0 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -686,7 +686,7 @@ namespace StardewModdingAPI // show update errors if (errors.Length != 0) - this.Monitor.Log("Encountered errors fetching updates for some mods:\n" + errors.ToString(), LogLevel.Trace); + this.Monitor.Log("Encountered errors fetching updates for some mods:\n" + errors, LogLevel.Trace); // show update alerts if (updates.Any()) @@ -796,7 +796,7 @@ namespace StardewModdingAPI ); // get assembly loaders - AssemblyLoader modAssemblyLoader = new AssemblyLoader(Constants.Platform, this.Monitor, this.Settings.DeveloperMode); + AssemblyLoader modAssemblyLoader = new AssemblyLoader(Constants.Platform, this.Monitor); AppDomain.CurrentDomain.AssemblyResolve += (sender, e) => modAssemblyLoader.ResolveAssembly(e.Name); InterfaceProxyFactory proxyFactory = new InterfaceProxyFactory(); |