diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-07-01 17:33:41 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-07-01 17:33:41 -0400 |
commit | eb8ba0576a4e7dc7f6c7963a268297834f501d16 (patch) | |
tree | eba56cbfa1b6619f7514b1c9ed74ad4089532df1 /src | |
parent | 274aa9f7756b75a7b6ff2610631c517890babb15 (diff) | |
download | SMAPI-eb8ba0576a4e7dc7f6c7963a268297834f501d16.tar.gz SMAPI-eb8ba0576a4e7dc7f6c7963a268297834f501d16.tar.bz2 SMAPI-eb8ba0576a4e7dc7f6c7963a268297834f501d16.zip |
fix incorrect trace message
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI/Framework/ContentCoordinator.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ContentCoordinator.cs b/src/SMAPI/Framework/ContentCoordinator.cs index 1336f3e9..d9b2109a 100644 --- a/src/SMAPI/Framework/ContentCoordinator.cs +++ b/src/SMAPI/Framework/ContentCoordinator.cs @@ -250,7 +250,8 @@ namespace StardewModdingAPI.Framework // report result if (removedAssetNames.Any()) this.Monitor.Log($"Invalidated {removedAssetNames.Count} asset names: {string.Join(", ", removedAssetNames.OrderBy(p => p, StringComparer.InvariantCultureIgnoreCase))}. Reloaded {reloaded} core assets.", LogLevel.Trace); - this.Monitor.Log("Invalidated 0 cache entries.", LogLevel.Trace); + else + this.Monitor.Log("Invalidated 0 cache entries.", LogLevel.Trace); return removedAssetNames; } |