Skip to content

Commit

Permalink
feat(core); log the stacktrace in case of plugin scanning error
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Sep 18, 2024
1 parent 3c6aadf commit 517d26e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/main/java/io/kestra/core/plugins/PluginScanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ private RegisteredPlugin scanClassLoader(final ClassLoader classLoader,
log.error("Unable to load all plugin classes from '{}'. Cause: [{}] {}",
location,
e.getClass().getSimpleName(),
e.getMessage()
e.getMessage(),
e
);
}

Expand Down

0 comments on commit 517d26e

Please sign in to comment.