remove debug println

This commit is contained in:
Miek Gieben 2011-02-09 21:45:56 +01:00
parent 5c548a6e93
commit f1d995634c
1 changed files with 0 additions and 2 deletions

View File

@ -58,7 +58,6 @@ func accepterUDP(l *net.UDPConn, ch chan *Request, quit chan bool) {
for {
select {
case <-quit:
println("quit")
return
default:
r := new(Request)
@ -162,7 +161,6 @@ func ListenAndServe(addr string, handler Handler, q chan bool) os.Error {
for {
select {
case <-q:
println("Closing")
/* quit received, lets stop */
lt.Close()
lu.Close()