Skip to content

Commit

Permalink
move status messages from parquet to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Feb 10, 2025
1 parent 13d1c2d commit 167cd9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/cmd/dolt/cli/stdio.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func DeleteAndPrint(prevMsgLen int, msg string) int {
}
}

Print(string(backspacesAndMsg))
PrintErr(string(backspacesAndMsg))
return msgLen
}

Expand Down
2 changes: 1 addition & 1 deletion go/cmd/dolt/commands/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ func (f *fileReadProgress) printNewLineIfNeeded() {
func updateFileReadProgressOutput() {
if fileReadProg == nil {
// this should not happen, but sanity check
cli.Println("No file is being processed.")
cli.PrintErrln("No file is being processed.")
}
// batch can be writing to the line, so print new line.
batchEditStats.printNewLineIfNeeded()
Expand Down

0 comments on commit 167cd9d

Please sign in to comment.