(format string, v ...any)
| 167 | } |
| 168 | |
| 169 | func (l *mcpLoggerAdapter) Infof(format string, v ...any) { |
| 170 | l.logger.Info(context.Background(), fmt.Sprintf(format, v...)) |
| 171 | } |
| 172 | |
| 173 | func (l *mcpLoggerAdapter) Errorf(format string, v ...any) { |
| 174 | l.logger.Error(context.Background(), fmt.Sprintf(format, v...)) |
no test coverage detected