Skip to content

Commit

Permalink
fix: minor fix of debug log in JdbcOffsetStore (#1312)
Browse files Browse the repository at this point in the history
  • Loading branch information
leviramsey authored Feb 12, 2025
1 parent adbfd31 commit a7808ab
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,7 @@ class JdbcOffsetStore[S <: JdbcSession](

def clearOffset(projectionId: ProjectionId): Future[Done] = {
withConnection(jdbcSessionFactory) { conn =>
logger.debug(
"clearing offset for [{}], using connection id [{}], using connection id [{}]",
projectionId,
System.identityHashCode(conn))
logger.debug("clearing offset for [{}], using connection id [{}]", projectionId, System.identityHashCode(conn))
tryWithResource(conn.prepareStatement(settings.dialect.clearOffsetStatement)) { stmt =>
stmt.setString(1, projectionId.name)
stmt.setString(2, projectionId.key)
Expand Down

0 comments on commit a7808ab

Please sign in to comment.