Skip to content
Merged
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
5 changes: 4 additions & 1 deletion pubsub/google/cloud/pubsub_v1/publisher/batch/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
from google.cloud.pubsub_v1.publisher.batch import base


_LOGGER = logging.getLogger(__name__)


class Batch(base.Batch):
"""A batch of messages.

Expand Down Expand Up @@ -173,7 +176,7 @@ def _commit(self):
self.messages,
)
end = time.time()
logging.getLogger().debug('gRPC Publish took {s} seconds.'.format(
_LOGGER.debug('gRPC Publish took {s} seconds.'.format(
s=end - start,
))

Expand Down