fix: Remove LOGGER.exception() line by mukund-ananthu · Pull Request #1087 · googleapis/python-pubsub

@mukund-ananthu mukund-ananthu changed the title Remove LOGGER.exception() line fix: Remove LOGGER.exception() line

Feb 22, 2024

@mukund-ananthu

Information logged in this line will be available to the calling code
  via the exception thrown.

There are scenarios where due to concurrency issues,  there are two uncoordinated outputs happening at once. This may result in this line logging stack traces after log statements in the exception block of the calling code.

@mukund-ananthu