Get rid of useless panic statement

pull/19/head
David Stainton 9 years ago
parent 94258abb36
commit 40108ae227

@ -55,7 +55,7 @@ func (a *AccumulatingService) SessionWorker(conn net.Conn) error {
for { for {
line, err := connReader.ReadBytes('\n') line, err := connReader.ReadBytes('\n')
if err != nil { if err != nil {
panic(fmt.Sprintf("AccumulatingService read error: %s", err)) fmt.Printf("AccumulatingService read error: %s\n", err)
} }
lineStr := strings.TrimSpace(string(line)) lineStr := strings.TrimSpace(string(line))
a.buffer.WriteString(lineStr + "\n") a.buffer.WriteString(lineStr + "\n")

Loading…
Cancel
Save