Commit 3f90de3f authored by roberthbailey's avatar roberthbailey

Merge pull request #4289 from jlowdermilk/cleanup

Explicitly send error string to Fatal log 2
parents f387c511 aff7f63d
...@@ -36,7 +36,7 @@ import ( ...@@ -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())
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment