From a93848a40a415fc84aa8f79c533e5a8951fff674 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 6 Nov 2023 11:12:17 +0100 Subject: [PATCH] fix(backend): removed debug log from heuristics --- backend/pkg/handlers/web/appCrash.go | 2 -- 1 file changed, 2 deletions(-) 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 }