Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/api/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .. import utils


log = logging.getLogger(__name__)
log = logging.getLogger('docker-py')


class BuildApiMixin(object):
Expand Down
2 changes: 1 addition & 1 deletion docker/api/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .. import auth, errors, utils
from ..constants import DEFAULT_DATA_CHUNK_SIZE

log = logging.getLogger(__name__)
log = logging.getLogger('docker-py')


class ImageApiMixin(object):
Expand Down
2 changes: 1 addition & 1 deletion docker/api/swarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .. import types
from .. import utils

log = logging.getLogger(__name__)
log = logging.getLogger('docker-py')


class SwarmApiMixin(object):
Expand Down
2 changes: 1 addition & 1 deletion docker/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
INDEX_URL = 'https://index.{0}/v1/'.format(INDEX_NAME)
TOKEN_USERNAME = '<token>'

log = logging.getLogger(__name__)
log = logging.getLogger('docker-py')


def resolve_repository_name(repo_name):
Expand Down
2 changes: 1 addition & 1 deletion docker/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
DOCKER_CONFIG_FILENAME = os.path.join('.docker', 'config.json')
LEGACY_DOCKER_CONFIG_FILENAME = '.dockercfg'

log = logging.getLogger(__name__)
log = logging.getLogger('docker-py')


def find_config_file(config_path=None):
Expand Down