(ctx context.Context, req *QueryDevicesRequest, res *QueryDevicesResponse)
| 142 | return err |
| 143 | } |
| 144 | func (t *UserInternalAPITrace) QueryDevices(ctx context.Context, req *QueryDevicesRequest, res *QueryDevicesResponse) error { |
| 145 | err := t.Impl.QueryDevices(ctx, req, res) |
| 146 | util.GetLogger(ctx).Infof("QueryDevices req=%+v res=%+v", js(req), js(res)) |
| 147 | return err |
| 148 | } |
| 149 | func (t *UserInternalAPITrace) QueryAccountData(ctx context.Context, req *QueryAccountDataRequest, res *QueryAccountDataResponse) error { |
| 150 | err := t.Impl.QueryAccountData(ctx, req, res) |
| 151 | util.GetLogger(ctx).Infof("QueryAccountData req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected