snuyanzin commented on code in PR #31: URL: https://github.com/apache/flink-connector-gcp-pubsub/pull/31#discussion_r1821436745
########## flink-examples-streaming-gcp-pubsub/src/main/java/org/apache/flink/streaming/examples/gcp/pubsub/PubSubPublisher.java: ########## @@ -21,11 +21,14 @@ import com.google.protobuf.ByteString; import com.google.pubsub.v1.PubsubMessage; import com.google.pubsub.v1.TopicName; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.math.BigInteger; /** Helper class to send PubSubMessages to a PubSub topic. */ class PubSubPublisher { + private static final Logger LOG = LoggerFactory.getLogger(PubSubExample.class); Review Comment: ```suggestion private static final Logger LOG = LoggerFactory.getLogger(PubSubPublisher.class); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org