diff --git a/backend/pkg/handlers/web/appCrash.go b/backend/pkg/handlers/web/appCrash.go index 1b6e95072..1e56896bb 100644 --- a/backend/pkg/handlers/web/appCrash.go +++ b/backend/pkg/handlers/web/appCrash.go @@ -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 }