|
|
@@ -80,7 +80,10 @@ DataChannels.prototype.onDataChannel = function (event) {
|
|
80
|
80
|
|
|
81
|
81
|
dataChannel.onerror = function (error) {
|
|
82
|
82
|
var e = new Error("Data Channel Error:" + error);
|
|
83
|
|
- GlobalOnErrorHandler.callErrorHandler(e);
|
|
|
83
|
+ // FIXME: this one seems to be generated a bit too often right now
|
|
|
84
|
+ // so we are temporarily commenting it before we have more clarity
|
|
|
85
|
+ // on which of the errors we absolutely need to report
|
|
|
86
|
+ //GlobalOnErrorHandler.callErrorHandler(e);
|
|
84
|
87
|
logger.error("Data Channel Error:", error, dataChannel);
|
|
85
|
88
|
};
|
|
86
|
89
|
|