Skip to content

Commit

Permalink
remove print statement (#4311)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feroze Mohideen authored Feb 21, 2024
1 parent 84d482c commit 38ec0b3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions api/server/handlers/project_integration/preflight_check.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package project_integration

import (
"fmt"
"net/http"

"connectrpc.com/connect"
Expand Down Expand Up @@ -110,8 +109,6 @@ func (p *CreatePreflightCheckHandler) ServeHTTP(w http.ResponseWriter, r *http.R
return
}

fmt.Printf("here is the checkResp: %v\n", checkResp.Msg.PreflightChecks)

errors := []PreflightCheckError{}
for key, val := range checkResp.Msg.PreflightChecks {
if val.Message == "" || !contains(recognizedPreflightCheckKeys, key) {
Expand Down

0 comments on commit 38ec0b3

Please sign in to comment.