Skip to content

Commit bbf7abf

Browse files
committed
Remove console.log
1 parent 5113f15 commit bbf7abf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/serverManager.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ serverManager.forceStopStream = (session, reason) => {
8181
serverManager.geoIp = (url, ip) => {
8282

8383
const geo = geoip.lookup(ip);
84-
console.log(ip, geo);
85-
84+
8685
if (typeof (stats[url].routing) !== 'undefined') {
8786
if (typeof (stats[url].routing[geo.country + '-' + geo.region]) !== 'undefined') // 'COUNTRY-REGION' tag like 'US-TX'
8887
return (stats[url].routing[geo.country + '-' + geo.region])

0 commit comments

Comments
 (0)