Skip to content

Commit

Permalink
#657 Added log message for Neo4j classloader
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkMahler committed Oct 4, 2024
1 parent 93d4262 commit 15b045a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ private static void prepareClassloader(Path pluginDir) {
*/
private static Consumer<Path> getClasspathAppender() {
ClassLoader neo4jClassLoader = GraphDatabaseSettings.class.getClassLoader();
log.info("Using neo4j classloader {}", neo4jClassLoader);
if (neo4jClassLoader instanceof URLClassLoader) {
return getURLClassLoaderAppender(neo4jClassLoader);
} else {
Expand Down

0 comments on commit 15b045a

Please sign in to comment.