Skip to content

Commit

Permalink
new line
Browse files Browse the repository at this point in the history
- output formatting
  • Loading branch information
JakeWnuk committed Sep 20, 2024
1 parent ac67b52 commit b81e1b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func main() {
primaryMap = utils.CombineMaps(primaryMap, readFilesMap, readURLsMap)
}

fmt.Fprintf(os.Stderr, "[*] All content done loading.")
fmt.Fprintf(os.Stderr, "[*] All content loaded.\n")

// Apply transformation if provided
if *transformation != "" && templateFiles == nil {
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
func ReadFilesToMap(fs models.FileSystem, filenames []string) map[string]int {
wordMap := make(map[string]int)
// 4 GB read buffer
fmt.Fprintf(os.Stderr, "[*] Creating file buffer...\n")
fmt.Fprintf(os.Stderr, "[*] Creating file buffer and reading...\n")
chunkSize := int64(4 * 1024 * 1024 * 1024)

i := 0
Expand Down

0 comments on commit b81e1b6

Please sign in to comment.