Skip to content

Commit

Permalink
Merge pull request #105 from fgvieira/fix_log
Browse files Browse the repository at this point in the history
Fix log typo
  • Loading branch information
shenwei356 authored Oct 22, 2024
2 parents c77ec68 + dbd2a85 commit e1a3635
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxonkit/cmd/util-basic-data.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func loadData(config Config, loadTree bool, recordRank bool) (
wg.Add(1)
go func() {
if config.Verbose {
log.Infof("parsing delnodes file: %s", config.NamesFile)
log.Infof("parsing delnodes file: %s", config.DelNodesFile)
}
delnodes = getDelnodesMap(config.DelNodesFile)
if config.Verbose {
Expand All @@ -90,7 +90,7 @@ func loadData(config Config, loadTree bool, recordRank bool) (
wg.Add(1)
go func() {
if config.Verbose {
log.Infof("parsing merged file: %s", config.NamesFile)
log.Infof("parsing merged file: %s", config.MergedFile)
}
merged = getMergedNodesMap(config.MergedFile)
if config.Verbose {
Expand Down

0 comments on commit e1a3635

Please sign in to comment.