openvidu-server: initialization log fix

pull/121/head
pabloFuente 2018-09-05 17:40:32 +02:00
parent 5889fdd449
commit 332877de10
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class OpenViduServer implements JsonRpcConfigurer {
log.info("Using autodiscovery rules to locate KMS on every pipeline"); log.info("Using autodiscovery rules to locate KMS on every pipeline");
return new AutodiscoveryKurentoClientProvider(); return new AutodiscoveryKurentoClientProvider();
} else { } else {
log.info("Configuring Kurento Room Server to use first of the following kmss: " + kmsWsUris); log.info("Configuring OpenVidu Server to use first of the following kmss: " + kmsWsUris);
return new FixedOneKmsManager(firstKmsWsUri); return new FixedOneKmsManager(firstKmsWsUri);
} }
} }