Skip to content

Commit

Permalink
PubSub: use debug for logging the inserts (close #321)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjben committed Aug 14, 2023
1 parent 95a1d50 commit dfc2fc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class GooglePubSubSink private (

override def storeRawEvents(events: List[Array[Byte]], key: String): Unit =
if (events.nonEmpty) {
log.info(s"Writing ${events.size} records to PubSub topic $topicName")
log.debug(s"Writing ${events.size} records to PubSub topic $topicName")

events.foreach { event =>
publisher.asRight.map { p =>
Expand Down

0 comments on commit dfc2fc5

Please sign in to comment.