Commit 8e7d1419 authored by Eric Paris's avatar Eric Paris

Fix printing errors from failed binary runs

I had the kublet die on startup and the only error was "0x401da0" Which I assume is an address of the err.Error function. The other way to fix this, I think, would be to use err.Error(), however that could cause fmt.Fprintf() problems, debuging on the error message people used. Now I get a nice clean error I can understand: "cAdvisor.New() err = mountpoint for cpu not found"
parent c1943739
...@@ -42,7 +42,7 @@ func main() { ...@@ -42,7 +42,7 @@ func main() {
verflag.PrintAndExitIfRequested() verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil { if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error) fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1) os.Exit(1)
} }
} }
...@@ -49,7 +49,7 @@ func main() { ...@@ -49,7 +49,7 @@ func main() {
verflag.PrintAndExitIfRequested() verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil { if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error) fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1) os.Exit(1)
} }
} }
...@@ -45,7 +45,7 @@ func main() { ...@@ -45,7 +45,7 @@ func main() {
verflag.PrintAndExitIfRequested() verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil { if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error) fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1) os.Exit(1)
} }
} }
...@@ -44,7 +44,7 @@ func main() { ...@@ -44,7 +44,7 @@ func main() {
verflag.PrintAndExitIfRequested() verflag.PrintAndExitIfRequested()
if err := s.Run(pflag.CommandLine.Args()); err != nil { if err := s.Run(pflag.CommandLine.Args()); err != nil {
fmt.Fprint(os.Stderr, err.Error) fmt.Fprint(os.Stderr, "%v\n", err)
os.Exit(1) os.Exit(1)
} }
} }
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