Skip to content

Commit 8e7c624

Browse files
petersmytheCopilot
andauthored
Improve logging message
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent b57d1f9 commit 8e7c624

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

geowebcache/core/src/main/java/org/geowebcache/seed/SeederThreadPoolExecutor.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,9 @@ private static int[] resolveAndValidateSizes(int defaultCore, int defaultMax) {
6161
int core = resolvePoolSize(GWC_SEEDER_CORE_POOL_SIZE, defaultCore);
6262
int max = resolvePoolSize(GWC_SEEDER_MAX_POOL_SIZE, defaultMax);
6363
if (core > max) {
64-
log.warning(GWC_SEEDER_CORE_POOL_SIZE
65-
+ " ("
64+
log.warning("Configured corePoolSize ("
6665
+ core
67-
+ ") is greater than "
68-
+ GWC_SEEDER_MAX_POOL_SIZE
69-
+ " ("
66+
+ ") is greater than maxPoolSize ("
7067
+ max
7168
+ "), adjusting maxPoolSize to match corePoolSize");
7269
max = core;

0 commit comments

Comments
 (0)