good morning!!!!

Skip to content
Snippets Groups Projects
Commit 2e45e4d0 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Print error using regular println. Fixes #146

We can't use our own logger because it hasn't been set up properly at
that point.
parent ce05634f
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ func main() {
db := utils.NewDatabase()
err := utils.DBSanityCheck(db)
if err != nil {
logger.Errorln(err)
fmt.Println(err)
os.Exit(1)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment