diff --git a/vstp/handler.go b/vstp/handler.go index c467ef4..e102078 100644 --- a/vstp/handler.go +++ b/vstp/handler.go @@ -1,6 +1,7 @@ package vstp import ( + "fmt" "time" "git.fjla.uk/owlboard/timetable-mgr/log" @@ -17,6 +18,7 @@ func handle(msg *stomp.Message) { err, convertedType := convertCifType(schedule) if err != nil { log.Error("Error converting VSTP to CIF", zap.Error(err)) + fmt.Println(msg.Body) return } err = processCifData(convertedType)