fix(backend): disabled debug log in http handler

This commit is contained in:
Alexander Zavorotynskiy 2023-05-02 16:59:57 +02:00
parent 298288301a
commit 8aa14a68c9

View file

@ -211,9 +211,6 @@ func (e *Router) pushMessagesHandlerWeb(w http.ResponseWriter, r *http.Request)
}
bodySize = len(bodyBytes)
// DEBUG: print body
log.Printf("[decompressed] first bytes: %+v", bodyBytes[:10])
// Send processed messages to queue as array of bytes
// TODO: check bytes for nonsense crap
err = e.services.Producer.Produce(e.cfg.TopicRawWeb, sessionData.ID, bodyBytes)