mirror of
https://github.com/minio/minio.git
synced 2025-11-09 05:34:56 -05:00
Fix Windows console printing (#8805)
Print to console which does translation and not directly to stdout. Fixes #8804
This commit is contained in:
committed by
Harshavardhana
parent
3320878dfb
commit
627fdfeab7
@@ -25,6 +25,7 @@ import (
|
||||
"github.com/minio/minio/cmd/logger"
|
||||
"github.com/minio/minio/cmd/logger/message/log"
|
||||
"github.com/minio/minio/pkg/color"
|
||||
"github.com/minio/minio/pkg/console"
|
||||
)
|
||||
|
||||
// Target implements loggerTarget to send log
|
||||
@@ -109,7 +110,7 @@ func (c *Target) Send(e interface{}, logKind string) error {
|
||||
apiString, timeString, deploymentID, requestID, remoteHost, host, userAgent,
|
||||
msg, tagString, strings.Join(trace, "\n"))
|
||||
|
||||
fmt.Println(output)
|
||||
console.Println(output)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user