Skip to content

Commit

Permalink
debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrose14 committed Nov 10, 2023
1 parent 88a4761 commit c51447b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/webapp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ func main() {
log.Fatalf("failed to parse secrets: %s", err)
}

log.Printf("hello, world! v1")

db, err := sql.Open("sqlite3", "file:"+*dbfile+"?cache=shared")
if err != nil {
log.Fatalf("failed to open sqlite connection: %s", err)
Expand All @@ -96,7 +98,7 @@ func main() {
}

if *daemonize {

}

if *pidfile != "" {
Expand Down

0 comments on commit c51447b

Please sign in to comment.