Remove broker log messages for invalid SDP and SQS cleanup

This commit is contained in:
Cecylia Bocovich 2025-03-26 13:57:09 -04:00
parent 5ec92a5dd4
commit 08239cca2a
No known key found for this signature in database
GPG key ID: 009DE379FD9B7B90
2 changed files with 0 additions and 2 deletions

View file

@ -220,7 +220,6 @@ func proxyAnswers(i *IPC, w http.ResponseWriter, r *http.Request) {
err = validateSDP(body) err = validateSDP(body)
if err != nil { if err != nil {
log.Println("Error proxy SDP: ", err.Error())
w.WriteHeader(http.StatusBadRequest) w.WriteHeader(http.StatusBadRequest)
return return
} }

View file

@ -119,7 +119,6 @@ func (r *sqsHandler) cleanupClientQueues(ctx context.Context) {
} }
} }
log.Printf("SQSHandler: finished running iteration of client queue cleanup. found and deleted %d client queues.\n", numDeleted)
} }
} }
} }