mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 00:08:11 +00:00
Add Tracef to logger Interface
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
8df5e33ef6
commit
490c7dd599
@ -24,4 +24,5 @@ type Interface interface {
|
||||
Infof(string, ...interface{})
|
||||
Warning(...interface{})
|
||||
Warningf(string, ...interface{})
|
||||
Tracef(string, ...interface{})
|
||||
}
|
||||
|
@ -45,3 +45,6 @@ func (l *NullLogger) Warning(...interface{}) {}
|
||||
|
||||
// Warningf is a no-op for the null logger
|
||||
func (l *NullLogger) Warningf(string, ...interface{}) {}
|
||||
|
||||
// Tracef is a no-op for the null logger
|
||||
func (l *NullLogger) Tracef(string, ...interface{}) {}
|
||||
|
Loading…
Reference in New Issue
Block a user