Skip to content

Commit

Permalink
Remove file number from count
Browse files Browse the repository at this point in the history
  • Loading branch information
ZionDials committed Sep 13, 2024
1 parent 763a099 commit 64009f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func ParseFiles(inputDirectory string, outputDirectory string, fileType string,
os.Exit(1)
}

logger.Info("Parsing %d files in directory: %s", len(files), inputDirectory)
logger.Info("Parsing files in directory: %s", inputDirectory)

// TimestampedFilename := fileType + "_" + helpers.FilenameFriendlyTimeStamp() + ".csv"

Expand Down Expand Up @@ -64,5 +64,5 @@ func ParseFiles(inputDirectory string, outputDirectory string, fileType string,
}
}

logger.Info("Finished parsing %d files in directory: %s", len(files), inputDirectory)
logger.Info("Finished parsing files in directory: %s", inputDirectory)
}

0 comments on commit 64009f8

Please sign in to comment.