Tweak to parser and main's error handling

This commit is contained in:
Matthew Holt
2015-03-28 16:24:00 -06:00
parent 09aad777f4
commit 2dc39feabd
3 changed files with 15 additions and 9 deletions

View File

@ -39,7 +39,7 @@ func main() {
defer wg.Done()
err := s.Serve()
if err != nil {
s.Log(err)
log.Println(err)
}
}(s)
}