Fix log msg
diff --git a/data/wrap/connection.go b/data/wrap/connection.go
index d643a88..6241e1b 100644
--- a/data/wrap/connection.go
+++ b/data/wrap/connection.go
@@ -39,7 +39,7 @@
 func (c *wrapConn) Begin() (driver.Tx, error) {
 	txID := atomic.AddInt64(&c.txCounter, 1)
 	log := c.log.WithField("tx", txID)
-	log.Debug("begin trans %d", txID)
+	log.Debug("begin trans")
 
 	tx, err := c.SQLiteConn.Begin()
 	if err != nil {