aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2013-09-09 10:51:54 +0900
committermattn <mattn.jp@gmail.com>2013-09-09 10:51:54 +0900
commit132e6e989835b96b4d6809b403fab62b2fd31aa0 (patch)
tree8161f6e02d1d44cf031e621a848cce984ca76d55 /sqlite3.go
parentImplements Execer (diff)
downloadgolite-132e6e989835b96b4d6809b403fab62b2fd31aa0.tar.gz
golite-132e6e989835b96b4d6809b403fab62b2fd31aa0.tar.xz
Remove debug message
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 3d77f06..d645af1 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -140,7 +140,6 @@ func (c *SQLiteConn) Exec(query string, args []driver.Value) (driver.Result, err
println(query)
ds, err := c.Prepare(query)
if err != nil {
- println("FOO1")
return nil, err
}
s := ds.(*SQLiteStmt)