@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.45 → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/MediasoupManager.js +5 -0
- package/package.json +1 -1
package/dist/MediasoupManager.js
CHANGED
|
@@ -104,6 +104,11 @@ class MediasoupManager {
|
|
|
104
104
|
async produce(track, appData) {
|
|
105
105
|
if (!this.sendTransport)
|
|
106
106
|
throw new Error("Send transport not initialized");
|
|
107
|
+
console.log(`🔍 [MediaSoup] Attempting to produce ${track.kind} track, transport state:`, {
|
|
108
|
+
id: this.sendTransport.id,
|
|
109
|
+
closed: this.sendTransport.closed,
|
|
110
|
+
connectionState: this.sendTransport.connectionState,
|
|
111
|
+
});
|
|
107
112
|
// Check if transport is closed or failed
|
|
108
113
|
if (this.sendTransport.closed) {
|
|
109
114
|
throw new Error("Send transport is closed");
|
package/package.json
CHANGED