From 58dc579255f04e736c3e5d4eb352aa5eaee62833 Mon Sep 17 00:00:00 2001 From: pb Date: Mon, 26 May 2025 18:30:56 +0200 Subject: [PATCH] added debug logging --- models/workflow_execution/workflow_scheduler.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/models/workflow_execution/workflow_scheduler.go b/models/workflow_execution/workflow_scheduler.go index eaf983c..7ec29e2 100644 --- a/models/workflow_execution/workflow_scheduler.go +++ b/models/workflow_execution/workflow_scheduler.go @@ -84,14 +84,15 @@ func (ws *WorkflowSchedule) CheckBooking(wfID string, request *tools.APIRequest) bookings = append(bookings, exec.Book(ws.UUID, wfID, priceds)...) } for _, b := range bookings { + bl := l.With().Str("booking",b.UUID).Logger() meth := request.Caller.URLS[tools.BOOKING][tools.GET] meth = strings.ReplaceAll(meth, ":id", b.ResourceID) meth = strings.ReplaceAll(meth, ":start_date", b.ExpectedStartDate.Format("2006-01-02T15:04:05")) meth = strings.ReplaceAll(meth, ":end_date", b.ExpectedEndDate.Format("2006-01-02T15:04:05")) request.Caller.URLS[tools.BOOKING][tools.GET] = meth - l.Debug().Msg("Get booking on" + b.DestPeerID) + bl.Debug().Msg("Get booking on" + b.DestPeerID) _, err := (&peer.Peer{}).LaunchPeerExecution(b.DestPeerID, b.ResourceID, tools.BOOKING, tools.GET, nil, request.Caller) - l.Debug().Msg("Received response from Get booking on " + b.DestPeerID) + bl.Debug().Msg("Received response from Get booking on " + b.DestPeerID) if err != nil { return false, wf, execs, bookings, err }