Merge pull request #4289 from jlowdermilk/cleanup

Explicitly send error string to Fatal log 2
This commit is contained in:
roberthbailey 2015-02-10 11:37:26 -08:00
commit 3f90de3f80

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())
} }
} }