diff --git a/internal/server/handle_api_sync.go b/internal/server/handle_api_sync.go index 7fdb521..affc700 100644 --- a/internal/server/handle_api_sync.go +++ b/internal/server/handle_api_sync.go @@ -21,8 +21,8 @@ func handleSync(bs *booking.Service) echo.HandlerFunc { if err != nil { return c.String(http.StatusInternalServerError, err.Error()) } - log.Warnf("%+v", b) + log.Infof("created booking %q from %q", b.Name, b.Platform) - return c.JSON(http.StatusCreated, b) + return c.JSON(http.StatusCreated, "👍") } }