Skip to content

Commit

Permalink
fix: fixing issue with logging
Browse files Browse the repository at this point in the history
Release-As: 0.5.3
  • Loading branch information
holtgrewe committed Jul 17, 2023
1 parent 49fcc5c commit ab62f24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions varfish_cli/case/create_case_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
CaseImportState,
CaseVariantType,
DatabaseInfoFile,
EffectsFile,
GenomeBuild,
GenotypeFile,
PedigreeMember,
Expand Down Expand Up @@ -476,7 +475,7 @@ def _split_files_by_role(self): # noqa
if not self.path_ped:
issues.append("no PED file given")
if len(self.paths_effect_sv):
logging.info("Will ignore any SV effect files")
logger.info("Will ignore any SV effect files")
if not self.paths_genotype and not self.paths_genotype_sv:
issues.append("neither small nor SVs given")
if len(self.paths_genotype) > 1:
Expand Down

0 comments on commit ab62f24

Please sign in to comment.