Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Goina committed Apr 29, 2024
1 parent f4d55e7 commit ae6eb7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ private void runExportForMaskIds(int jobId, List<String> maskMipIds) {
scoresFilter,
null/*no sorting because it uses too much memory on the server*/);
List<CDMatchEntity<? extends AbstractNeuronEntity, ? extends AbstractNeuronEntity>> selectedMatchesForMask;
LOG.info("Found {} color depth matches for mip {}", allMatchesForMask.size(), maskMipId);
if (allMatchesForMask.isEmpty()) {
// this occurs only when there really aren't any matches between the EM MIP and any of the LM MIPs
PagedResult<AbstractNeuronEntity> neurons = neuronMetadataDao.findNeurons(new NeuronSelector().addMipID(maskMipId), new PagedRequest());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ private void runExportForTargetIds(int jobId, List<String> targetMipIds) {
/* matchExcludedTags */matchesExcludedTags,
scoresFilter,
null/* no sorting yet because it uses too much memory on the server */);
LOG.info("Found {} color depth matches for mip {}", allMatchesForTarget.size(), targetMipId);
List<CDMatchEntity<? extends AbstractNeuronEntity, ? extends AbstractNeuronEntity>> selectedMatchesForTarget;
if (allMatchesForTarget.isEmpty()) {
// this can happen even when there are EM - LM matches but the match is low ranked and it has no gradient score
Expand Down

0 comments on commit ae6eb7d

Please sign in to comment.