Remove debug message

This commit is contained in:
mattn 2013-09-09 10:51:54 +09:00
parent d4673cd31c
commit 132e6e9898
1 changed files with 0 additions and 1 deletions

View File

@ -140,7 +140,6 @@ func (c *SQLiteConn) Exec(query string, args []driver.Value) (driver.Result, err
println(query) println(query)
ds, err := c.Prepare(query) ds, err := c.Prepare(query)
if err != nil { if err != nil {
println("FOO1")
return nil, err return nil, err
} }
s := ds.(*SQLiteStmt) s := ds.(*SQLiteStmt)