Skip to content

Commit

Permalink
#480 Suppress stacktrace if Neo4j plugin directory cannot be deleted …
Browse files Browse the repository at this point in the history
…on shutdown
  • Loading branch information
yaseno2186 authored Jul 15, 2024
1 parent 218f736 commit 14c08b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected void destroy() {
try {
FileUtils.deleteDirectory(directory);
} catch (IOException e) {
log.warn("Cannot delete Neo4j plugin directory {}.", directory, e);
log.warn("Cannot delete Neo4j plugin directory {}.", directory);
}
});
}
Expand Down

0 comments on commit 14c08b8

Please sign in to comment.