(format string, args ...any)
| 912 | } |
| 913 | |
| 914 | func (m *mockPlugin) Log(format string, args ...any) { |
| 915 | m.logf(fmt.Sprintf("[plugin:%s-%s] ", m.idx, m.name)+format, args...) |
| 916 | } |
| 917 | |
| 918 | func (m *mockPlugin) Configure(ctx context.Context, cfg string) (stub.EventMask, error) { |
| 919 | return m.mask, nil |
no outgoing calls
no test coverage detected