Commit 532b4d36 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer: don't panic if can't write to UI

parent e99e4b46
......@@ -2,10 +2,10 @@
BUG FIXES:
* core: Won't panic when writing to a bad pipe. [GH-560]
* common/uuid: Use cryptographically secure PRNG when generating
UUIDs. [GH-552]
## 0.3.10 (October 20, 2013)
FEATURES:
......
......@@ -210,7 +210,7 @@ func (rw *BasicUi) Say(message string) {
log.Printf("ui: %s", message)
_, err := fmt.Fprint(rw.Writer, message+"\n")
if err != nil {
panic(err)
log.Printf("[ERR] Failed to write to UI: %s", err)
}
}
......@@ -221,7 +221,7 @@ func (rw *BasicUi) Message(message string) {
log.Printf("ui: %s", message)
_, err := fmt.Fprint(rw.Writer, message+"\n")
if err != nil {
panic(err)
log.Printf("[ERR] Failed to write to UI: %s", err)
}
}
......@@ -232,7 +232,7 @@ func (rw *BasicUi) Error(message string) {
log.Printf("ui error: %s", message)
_, err := fmt.Fprint(rw.Writer, message+"\n")
if err != nil {
panic(err)
log.Printf("[ERR] Failed to write to UI: %s", err)
}
}
......
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