private void enqueueSendWithErrorLogging()

in src/main/java/com/spotify/google/cloud/pubsub/client/Publisher.java [356:362]


    private void enqueueSendWithErrorLogging() {
      try {
        enqueueSend();
      } catch (Exception e) {
        log.error("Error while enqueueing or sending messages on background thread", e);
      }
    }