Explicitly send error string to Fatal log 2

This commit is contained in:
Jeff Lowdermilk 2015-02-10 10:02:16 -08:00
parent 8811fd2971
commit aff7f63d7f

View File

@ -36,7 +36,7 @@ import (
func checkErr(err error) { func checkErr(err error) {
if err != nil { if err != nil {
glog.FatalDepth(1, err) glog.FatalDepth(1, err.Error())
} }
} }