| commit | 2064c5d8df828421464a4dfa2a11a1945f5c0bda | [log] [tgz] |
|---|---|---|
| author | Scott Ganyo <scott@ganyo.com> | Thu Feb 23 09:44:34 2017 -0800 |
| committer | Scott Ganyo <scott@ganyo.com> | Thu Feb 23 09:44:34 2017 -0800 |
| tree | f1f1ea8ba14df5fd803e7bf97b23a49a43d97d7d | |
| parent | a56a112606721276df30818f1073643886c78728 [diff] |
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 {