diff --git a/controllers/webhookController.go b/controllers/webhookController.go index ca165df..6b70d60 100644 --- a/controllers/webhookController.go +++ b/controllers/webhookController.go @@ -59,7 +59,7 @@ func OnPubStart(c *fiber.Ctx) error { // Parse the URL parameters, in ordere to get the transmission key and the player key transmissionkey, playerkey := utils.ParseTransmissionString(p.UrlParam) - // log.Printf("======================== Start StreamName %s (%s), Transmission Key %s, PlayerKey %s, SessionId %s\n", p.StreamName, p.RemoteAddress, transmissionkey, playerkey, p.SessionId) + log.Printf("======================== Start StreamName %s (%s), Transmission Key %s, PlayerKey %s, SessionId %s\n", p.StreamName, p.RemoteAddress, transmissionkey, playerkey, p.SessionId) // Get the channel from the database ok, currentTransmission := services.VerifyTransmissionAuthorization(p.StreamName, p.SessionId, transmissionkey, playerkey)