diff --git a/notify.go b/notify.go index a52ec2e..d37c451 100644 --- a/notify.go +++ b/notify.go @@ -6,7 +6,6 @@ import ( "fmt" "io" "net/http" - "os" ) type MessagePart struct { @@ -68,7 +67,7 @@ func (n NotifyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { if err != nil { fmt.Printf("error: %v\n", err) } else { - os.Stdout.Write(output) + //os.Stdout.Write(output) SpeakerPipe.Write(output) } }