Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions webhook/routelogger.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package webhook

import (
"context"
"fmt"
"reflect"
"sync"

Expand Down Expand Up @@ -30,6 +31,7 @@ func NewRouteLogger(key func(Request) string) *RouteLogger {
}

func (s *RouteLogger) Record(r Request) {
fmt.Printf("Debug - Got event %+v", r)
events.Debug("%+v", r)
s.mu.Lock()
defer s.mu.Unlock()
Expand Down