mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
fix shadowing issue in logger (#5830)
This commit is contained in:
parent
ed5f2d899d
commit
c332b4fb5e
@ -28,7 +28,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/fatih/color"
|
||||
"github.com/minio/mc/pkg/console"
|
||||
c "github.com/minio/mc/pkg/console"
|
||||
)
|
||||
|
||||
// global colors.
|
||||
@ -376,7 +376,7 @@ func (i infoMsg) quiet(msg string, args ...interface{}) {
|
||||
}
|
||||
|
||||
func (i infoMsg) pretty(msg string, args ...interface{}) {
|
||||
console.Printf(msg, args...)
|
||||
c.Printf(msg, args...)
|
||||
}
|
||||
|
||||
// Info :
|
||||
@ -396,7 +396,7 @@ func (s startUpMsg) quiet(msg string, args ...interface{}) {
|
||||
}
|
||||
|
||||
func (s startUpMsg) pretty(msg string, args ...interface{}) {
|
||||
console.Printf(msg, args...)
|
||||
c.Printf(msg, args...)
|
||||
}
|
||||
|
||||
// StartupMessage :
|
||||
|
Loading…
Reference in New Issue
Block a user