Skip to content

Commit

Permalink
Logging to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Oct 8, 2024
1 parent dfab455 commit 2eca8bf
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import java.util.stream.Collectors;
import java.util.stream.Stream;

import com.google.common.base.Joiner;
import com.google.common.util.concurrent.UncheckedExecutionException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -341,6 +342,8 @@ public PhenoCube<?> load(String key) throws Exception {
return ret;
}else {
log.warn("ColumnMeta not found for : [{}]", key);
log.info("phenotypeMetaStore.getColumnNames(): ");
log.info(Joiner.on(",").join(phenotypeMetaStore.getColumnNames()));
return null;
}
}
Expand Down

0 comments on commit 2eca8bf

Please sign in to comment.