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.
1 parent 328b936 commit 33a3194Copy full SHA for 33a3194
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