(ctx context.Context, req *PerformDeviceCreationRequest, res *PerformDeviceCreationResponse)
| 78 | } |
| 79 | |
| 80 | func (t *UserInternalAPITrace) PerformDeviceCreation(ctx context.Context, req *PerformDeviceCreationRequest, res *PerformDeviceCreationResponse) error { |
| 81 | err := t.Impl.PerformDeviceCreation(ctx, req, res) |
| 82 | util.GetLogger(ctx).Infof("PerformDeviceCreation req=%+v res=%+v", js(req), js(res)) |
| 83 | return err |
| 84 | } |
| 85 | func (t *UserInternalAPITrace) PerformDeviceDeletion(ctx context.Context, req *PerformDeviceDeletionRequest, res *PerformDeviceDeletionResponse) error { |
| 86 | err := t.Impl.PerformDeviceDeletion(ctx, req, res) |
| 87 | util.GetLogger(ctx).Infof("PerformDeviceDeletion req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected