From 3801fc8c313f897b27f07a3f73f9751527b90e0e Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Sun, 5 Jul 2026 13:01:17 +0200 Subject: [PATCH] [bugfix] Fix log message --- exist-core/src/main/java/org/exist/repo/ClasspathHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exist-core/src/main/java/org/exist/repo/ClasspathHelper.java b/exist-core/src/main/java/org/exist/repo/ClasspathHelper.java index 7cf251c959..4e462b6f5b 100644 --- a/exist-core/src/main/java/org/exist/repo/ClasspathHelper.java +++ b/exist-core/src/main/java/org/exist/repo/ClasspathHelper.java @@ -92,7 +92,7 @@ public static void updateClasspath(BrokerPool pool, org.expath.pkg.repo.Package if (!(loader instanceof EXistClassLoader)) {return;} if (!isCompatible(pkg)) { - LOG.warn("Package {} is not compatible with this version of eXist. To avoid conflicts, Java libraries shipping with this package are not loaded.", pkg.getName()); + LOG.warn("Package {} is not compatible with this version of Elemental. To avoid conflicts, Java libraries shipping with this package are not loaded.", pkg.getName()); return; } final FileSystemStorage.FileSystemResolver resolver = (FileSystemStorage.FileSystemResolver) pkg.getResolver(); @@ -113,7 +113,7 @@ private static void scanPackages(BrokerPool pool, Classpath classpath) { for (final Packages pkgs : repo.get().getParentRepo().listPackages()) { final Package pkg = pkgs.latest(); if (!isCompatible(pkg)) { - LOG.warn("Package {} is not compatible with this version of eXist. To avoid conflicts, Java libraries shipping with this package are not loaded.", pkg.getName()); + LOG.warn("Package {} is not compatible with this version of Elemental. To avoid conflicts, Java libraries shipping with this package are not loaded.", pkg.getName()); } else { try { final FileSystemStorage.FileSystemResolver resolver = (FileSystemStorage.FileSystemResolver) pkg.getResolver();