From ac2cf078a4f05b07513d9c5f46d10bcd7f156ae2 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 14 Jan 2026 09:38:57 -0600 Subject: [PATCH] Remove debug print statement from SIPCallServer --- internal/module/sip-call-server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/module/sip-call-server.go b/internal/module/sip-call-server.go index 4cf326b..af6dd4c 100644 --- a/internal/module/sip-call-server.go +++ b/internal/module/sip-call-server.go @@ -160,7 +160,6 @@ func (scs *SIPCallServer) HandleCall(inDialog *diago.DialogServerSession) { scs.router.HandleInput(dialogContext, scs.Id(), SIPCallMessage{ To: inDialog.ToUser(), }) - fmt.Println(inDialog.LoadState()) } func (scs *SIPCallServer) Output(ctx context.Context, payload any) error {