do not Printf GELF messages when logging

This commit is contained in:
Natalia Goc 2024-06-04 11:00:37 +02:00
parent 3024e888c7
commit a2b61ea706

View File

@ -1,7 +1,6 @@
package gelfexporter
import (
"fmt"
"log"
"time"
@ -32,7 +31,6 @@ func Log(writer *gelf.UDPWriter, msg GELFMessage) {
if err != nil {
log.Println(err)
}
fmt.Printf("msg: %v sent\n", msg)
}
}