| 23 | ) |
| 24 | |
| 25 | type imlLogService struct { |
| 26 | store log_source.ILogSourceStore `autowired:""` |
| 27 | logRecordStore log_source.ILogRecordStore `autowired:""` |
| 28 | } |
| 29 | |
| 30 | func (i *imlLogService) LogRecordsByService(ctx context.Context, serviceId string, start time.Time, end time.Time, page int, size int) ([]*Item, int64, error) { |
| 31 | list, total, err := i.logRecordStore.ListPage(ctx, "`record_time` between ? and ? and `service` = ?", page, size, []interface{}{ |
nothing calls this directly
no outgoing calls
no test coverage detected