fix(backend): removed debug log from heuristics

This commit is contained in:
Alexander 2023-11-06 11:12:17 +01:00
parent 19384cd9ac
commit a93848a40a

View file

@ -1,7 +1,6 @@
package web
import (
"log"
"openreplay/backend/pkg/messages"
)
@ -50,7 +49,6 @@ func (h *AppCrashDetector) build() messages.Message {
Timestamp: h.dropTimestamp,
Type: "app_crash",
}
log.Printf("created app crash event: %+v", msg)
h.reset()
return msg
}