Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Sep 17, 2023
2 parents 485f18a + a0c4836 commit 59c2e88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ public void contextInitialized(ServletContextEvent event) {
}
}
}
logger.info("Found sitemap index at " + url + " containing " + count + " "
+ (count == 1 ? "sitemap" : "sitemaps"));
logger.log(Level.INFO, "Found sitemap index at {0} containing {1} {2}",
new Object[]{url, count, count == 1 ? "sitemap" : "sitemaps"});
}
JAR_SITEMAP_INDEXES.context(event.getServletContext()).set(jarSitemapIndexes);
} catch (IOException e) {
Expand Down

0 comments on commit 59c2e88

Please sign in to comment.