Browse Source

Apply review feedback to bring logging inline with other providers.

pull/165/head
Terrence Cole 8 years ago
parent
commit
32f2a10daf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/rackspace.py

+ 1
- 1
octodns/provider/rackspace.py 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)


Loading…
Cancel
Save