diff options
-rw-r--r-- | entry.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -57,6 +57,7 @@ func InsertEntry(entry *Entry) error { INSERT INTO entries (location, referrer, started_at, time_spent, scrolled_to) VALUES (:location, :referrer, :started_at, :time_spent, :scrolled_to);` _, err := db.NamedExec(query, entry) + log.Println("Entry recorded:", entry.Location) return err } |