[mirotalk] - change log type
This commit is contained in:
+8
-8
@@ -45,7 +45,7 @@ dependencies: {
|
||||
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
|
||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
* @version 1.6.20
|
||||
* @version 1.6.21
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -1386,11 +1386,11 @@ io.sockets.on('connect', async (socket) => {
|
||||
|
||||
const activeRooms = getActiveRooms();
|
||||
|
||||
log.info('[Join] - active rooms and peers count', activeRooms);
|
||||
log.debug('[Join] - active rooms and peers count', activeRooms);
|
||||
|
||||
log.info('[Join] - connected presenters grp by roomId', presenters);
|
||||
log.debug('[Join] - connected presenters grp by roomId', presenters);
|
||||
|
||||
log.info('[Join] - connected peers grp by roomId', peers);
|
||||
log.debug('[Join] - connected peers grp by roomId', peers);
|
||||
|
||||
await addPeerTo(channel);
|
||||
|
||||
@@ -1584,7 +1584,7 @@ io.sockets.on('connect', async (socket) => {
|
||||
|
||||
const { room_id, peer_id, peer_name, peer_uuid, to_peer_id } = data;
|
||||
|
||||
log.info('cmd', config);
|
||||
log.debug('cmd', config);
|
||||
|
||||
// Only the presenter can do this actions
|
||||
const presenterActions = ['geoLocation'];
|
||||
@@ -1921,11 +1921,11 @@ io.sockets.on('connect', async (socket) => {
|
||||
|
||||
const activeRooms = getActiveRooms();
|
||||
|
||||
log.info('[removePeerFrom] - active rooms and peers count', activeRooms);
|
||||
log.debug('[removePeerFrom] - active rooms and peers count', activeRooms);
|
||||
|
||||
log.info('[removePeerFrom] - connected presenters grp by roomId', presenters);
|
||||
log.debug('[removePeerFrom] - connected presenters grp by roomId', presenters);
|
||||
|
||||
log.info('[removePeerFrom] - connected peers grp by roomId', peers);
|
||||
log.debug('[removePeerFrom] - connected peers grp by roomId', peers);
|
||||
|
||||
for (let id in channels[channel]) {
|
||||
await channels[channel][id].emit('removePeer', { peer_id: socket.id });
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.6.20",
|
||||
"version": "1.6.21",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mirotalk",
|
||||
"version": "1.6.20",
|
||||
"version": "1.6.21",
|
||||
"license": "AGPL-3.0",
|
||||
"dependencies": {
|
||||
"@mattermost/client": "11.0.4",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mirotalk",
|
||||
"version": "1.6.20",
|
||||
"version": "1.6.21",
|
||||
"description": "A free WebRTC browser-based video call",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
|
||||
+1
-1
@@ -75,7 +75,7 @@ let brand = {
|
||||
},
|
||||
about: {
|
||||
imageUrl: '../images/mirotalk-logo.gif',
|
||||
title: 'WebRTC P2P v1.6.20',
|
||||
title: 'WebRTC P2P v1.6.21',
|
||||
html: `
|
||||
<button
|
||||
id="support-button"
|
||||
|
||||
+2
-2
@@ -15,7 +15,7 @@
|
||||
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
|
||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
* @version 1.6.20
|
||||
* @version 1.6.21
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12300,7 +12300,7 @@ function showAbout() {
|
||||
Swal.fire({
|
||||
background: swBg,
|
||||
position: 'center',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.6.20',
|
||||
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.6.21',
|
||||
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
|
||||
customClass: { image: 'img-about' },
|
||||
html: `
|
||||
|
||||
Reference in New Issue
Block a user