Skip to content

Commit

Permalink
Using logger for module in Pub/Sub publisher. (#4473)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes authored Nov 29, 2017
1 parent 56fc884 commit 10e6f99
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit 10e6f99

Please sign in to comment.