I want to log only error request and retries request/response. I tried using
cfg := dax.DefaultConfig()
cfg.HostPorts = []string{daxConfig.URL}
cfg.Region = daxConfig.Region
cfg.LogLevel = aws.LogDebugWithRequestRetries | aws.LogDebugWithRequestErrors
But this doesn't log the request body or the response How to log the request and response body ?