Add connection logging
diff --git a/rackspace/lb/v1/lbs/urls.go b/rackspace/lb/v1/lbs/urls.go
index 7b435b3..5100e94 100644
--- a/rackspace/lb/v1/lbs/urls.go
+++ b/rackspace/lb/v1/lbs/urls.go
@@ -10,6 +10,7 @@
 	path           = "loadbalancers"
 	protocolsPath  = "protocols"
 	algorithmsPath = "algorithms"
+	logPath        = "connectionlogging"
 )
 
 func resourceURL(c *gophercloud.ServiceClient, id int) string {
@@ -27,3 +28,7 @@
 func algorithmsURL(c *gophercloud.ServiceClient) string {
 	return c.ServiceURL(path, algorithmsPath)
 }
+
+func loggingURL(c *gophercloud.ServiceClient, id int) string {
+	return c.ServiceURL(path, strconv.Itoa(id), logPath)
+}