We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 328b936 + 33a3194 commit c5b6733Copy full SHA for c5b6733
src/main/java/org/scijava/module/process/LoggerPreprocessor.java
@@ -66,7 +66,7 @@ public void process(final Module module) {
66
if (loggerInput == null || !loggerInput.isAutoFill()) return;
67
68
String loggerName = loggerInput.getLabel();
69
- if(loggerName.isEmpty())
+ if(loggerName == null || loggerName.isEmpty())
70
loggerName = module.getDelegateObject().getClass().getSimpleName();
71
Logger logger = logService.subLogger(loggerName);
72
0 commit comments