fix incorrect trace message
This commit is contained in:
parent
274aa9f775
commit
eb8ba0576a
|
@ -250,7 +250,8 @@ namespace StardewModdingAPI.Framework
|
||||||
// report result
|
// report result
|
||||||
if (removedAssetNames.Any())
|
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 {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;
|
return removedAssetNames;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue