Skip to content

Commit e3291fe

Browse files
authored
Merge pull request #227 from evolvedbinary/7.x.x/hotfix/classpathhelper-log-message
[7.x.x] Improve ClasspathHelper log message
2 parents 1367b60 + 3801fc8 commit e3291fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

exist-core/src/main/java/org/exist/repo/ClasspathHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static void updateClasspath(BrokerPool pool, org.expath.pkg.repo.Package
9292
if (!(loader instanceof EXistClassLoader))
9393
{return;}
9494
if (!isCompatible(pkg)) {
95-
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());
95+
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());
9696
return;
9797
}
9898
final FileSystemStorage.FileSystemResolver resolver = (FileSystemStorage.FileSystemResolver) pkg.getResolver();
@@ -113,7 +113,7 @@ private static void scanPackages(BrokerPool pool, Classpath classpath) {
113113
for (final Packages pkgs : repo.get().getParentRepo().listPackages()) {
114114
final Package pkg = pkgs.latest();
115115
if (!isCompatible(pkg)) {
116-
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());
116+
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());
117117
} else {
118118
try {
119119
final FileSystemStorage.FileSystemResolver resolver = (FileSystemStorage.FileSystemResolver) pkg.getResolver();

0 commit comments

Comments
 (0)