We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac00889 commit ec44e05Copy full SHA for ec44e05
Source/Boxed.AspNetCore/Sitemap/SitemapGenerator.cs
@@ -189,10 +189,8 @@ private void CheckSitemapCount(int sitemapCount)
189
{
190
if (sitemapCount > MaximumSitemapCount)
191
192
- this.LogWarning(new SitemapException(string.Format(
193
- CultureInfo.CurrentCulture,
194
- "Sitemap index file exceeds the maximum number of allowed sitemaps of 50,000. Count:<{1}>",
195
- sitemapCount)));
+ this.LogWarning(new SitemapException(
+ $"Sitemap index file exceeds the maximum number of allowed sitemaps of 50,000. Count:<{sitemapCount}>"));
196
}
197
198
0 commit comments