diff options
author | Julio Capote <jcapote@gmail.com> | 2022-12-19 15:41:43 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-12-19 15:41:43 +0000 |
commit | afdf8a014236452e098ab1266c9a9315824f8103 (patch) | |
tree | 0c1db202f6f5c81783d7d2ccb1502443ab84a8ae /main.go | |
parent | 2211d7ace360548f6ee450f03d995c6bb246be2b (diff) | |
download | communique-afdf8a014236452e098ab1266c9a9315824f8103.tar.gz |
url helpers, cgi response format
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,7 +30,9 @@ func main() { log.Debugf("Loaded TOML Config: %+v", cfg) // DB - db, err := badger.Open(badger.DefaultOptions(cfg.DbPath)) + dbOpts := badger.DefaultOptions(cfg.DbPath) + // dbOpts.Logger = log // TODO needs to adapt Warningf to Warnf + db, err := badger.Open(dbOpts) if err != nil { log.Fatal(err) } |