github.com/tonistiigi/docker@v0.10.1-0.20240229224939-974013b0dc6a/internal/testutils/logger.go (about) 1 package testutils 2 3 import "testing" 4 5 // Logger is used to log non-fatal messages during tests. 6 type Logger interface { 7 Logf(format string, args ...any) 8 } 9 10 var _ Logger = (*testing.T)(nil)