diff --git a/server/iprestriction/client.go b/server/iprestriction/client.go index 70cb51f1..aee82759 100644 --- a/server/iprestriction/client.go +++ b/server/iprestriction/client.go @@ -107,7 +107,7 @@ func (c *Client) CheckIPRestricted(ip string) bool { log.Errorf("[CheckIPRestricted] failed to unmarshal response, err[%v] body[%v]", err, respBody) return false } - log.Debugf("[CheckIPRestricted] URL[%v] IP[%v] Result[%+v]", fullPath, ip, respStruct.Data.XLayerBridge) + log.Debugf("[CheckIPRestricted] URL[%v] IP[%v] Result[%+v]", fullPath, ip, respStruct) if respStruct.Data.XLayerBridge != nil && (respStruct.Data.XLayerBridge.Hidden || respStruct.Data.XLayerBridge.Limit) { return true }