diff --git a/src/lib/isSIP.js b/src/lib/isSIP.js index bc694aa84..da0ffb4a6 100644 --- a/src/lib/isSIP.js +++ b/src/lib/isSIP.js @@ -18,7 +18,6 @@ function isValidPort(domain) { const portMatch = domain.match(/:(\d+)($|;)/); if (portMatch) { const port = parseInt(portMatch[1], 10); - console.log(port); return !isNaN(port) && port > 0 && port <= 65535; } return true;