You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Core] Ignore class load error while class scanning (#1844)
In practice the class path may be rather dirty and not all available classes
can be loaded. Because Cucumber will by default scan in the root package it
guaranteed to run into class loading errors. By logging these at debug level
rather then throwing an exception Cucumber will most probably continue to work
as expected.
To debug occurrences of missing glue you can enable debug logging via:
```
-Djava.util.logging.config.file=path/to/logging.properties
```
```properties
handlers=java.util.logging.ConsoleHandler
.level=FINE
java.util.logging.ConsoleHandler.level=FINE
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
```
Fixes: #1843
0 commit comments