mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Fix cmd.util.Infof args
PiperOrigin-RevId: 518927601
This commit is contained in:
committed by
gVisor bot
parent
7b5cd4dda5
commit
bd30e8ba68
@@ -48,8 +48,8 @@ func (i *Writer) Write(data []byte) (n int, err error) {
|
||||
|
||||
// Infof writes message to log and stdout.
|
||||
func Infof(format string, args ...any) {
|
||||
log.Infof(format, args)
|
||||
fmt.Printf(format+"\n", args)
|
||||
log.Infof(format, args...)
|
||||
fmt.Printf(format+"\n", args...)
|
||||
}
|
||||
|
||||
// Errorf logs error to containerd log (--log), to stderr, and debug logs. It
|
||||
|
||||
Reference in New Issue
Block a user