Continue to standardize on logging

This commit is contained in:
Gabe Kangas
2020-06-17 23:01:49 -07:00
parent 02692befc6
commit e083663a77
5 changed files with 21 additions and 23 deletions

View File

@@ -145,7 +145,7 @@ func getSavedStats() *Stats {
var stats Stats
err = json.Unmarshal(jsonFile, &stats)
if err != nil {
panic(err)
log.Panicln(err)
}
return &stats