fixed issues detected by bazel check

This commit is contained in:
miampf 2024-01-22 16:29:37 +01:00
parent 972f832a6e
commit 081d357e58
No known key found for this signature in database
GPG key ID: 376EAC0E5307A669
6 changed files with 9 additions and 8 deletions

View file

@ -87,7 +87,7 @@ type spyLog struct {
msgs []string
}
func (f *spyLog) Debug(msg string, args ...any) {
func (f *spyLog) Debug(msg string, _ ...any) {
f.msgs = append(f.msgs, msg)
}