diff --git a/backend/main.go b/backend/main.go index 505749b..082a6ee 100644 --- a/backend/main.go +++ b/backend/main.go @@ -127,6 +127,7 @@ func queryDatabricksForRecipient(email string) (bool, error) { return false, fmt.Errorf("error creating request: %w", err) } req.Header.Set("Authorization", "Bearer "+databricksPAT) + fmt.Println("Request: ", req) client := &http.Client{} resp, err := client.Do(req)