Skip to content
Snippets Groups Projects
Commit 1f6833b1 authored by Chad Pilkey's avatar Chad Pilkey
Browse files

add a specific log message when falling back to rtmp ipv4

parent 911e9973
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,15 @@ package org.bigbluebutton.main.model.modules
logData.hostname = e.hostname;
logData.logCode = "port_test_done";
LOGGER.info(JSON.stringify(logData));
if (e.hostname == getPortTestAlternateHost()) {
var logData2:Object = UsersUtil.initLogData();
logData2.tags = ["initialization"];
logData2.hostname = e.hostname;
logData2.logCode = "fallback_to_ipv4_host";
LOGGER.info(JSON.stringify(logData2));
}
BBB.initConnectionManager().useProtocol(e.tunnel);
var pattern:RegExp = /(?P<protocol>.+):\/\/(?P<server>.+)/;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment