fix incorrect trace message

This commit is contained in:
Jesse Plamondon-Willard 2018-07-01 17:33:41 -04:00
parent 274aa9f775
commit eb8ba0576a
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}