1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Apply review feedback to bring logging inline with other providers.

This commit is contained in:
Terrence Cole
2017-08-11 14:03:03 -07:00
parent 17c9b8b527
commit 32f2a10daf

View File

@@ -52,7 +52,7 @@ class RackspaceProvider(BaseProvider):
# The api key that grants access for that user (required)
api_key: api-key
'''
self.log = logging.getLogger('RackspaceProvider[{}]'.format(username))
self.log = logging.getLogger('RackspaceProvider[{}]'.format(id))
super(RackspaceProvider, self).__init__(id, *args, **kwargs)
auth_token, dns_endpoint = self._get_auth_token(username, api_key)