diff --git a/src/logging/LogItem.ts b/src/logging/LogItem.ts index 5aaabcc4..31991159 100644 --- a/src/logging/LogItem.ts +++ b/src/logging/LogItem.ts @@ -185,9 +185,6 @@ export class LogItem implements ILogItem { * @return {[type]} [description] */ run(callback: LogCallback): T { - if (this.end !== undefined) { - console.trace("log item is finished, additional logs will likely not be recorded"); - } try { const result = callback(this); if (result instanceof Promise) { @@ -239,9 +236,6 @@ export class LogItem implements ILogItem { } child(labelOrValues: LabelOrValues, logLevel?: LogLevel, filterCreator?: FilterCreator): LogItem { - if (this.end) { - console.trace(`log item ${this.values.l} finished, additional log ${JSON.stringify(labelOrValues)} will likely not be recorded`); - } if (!logLevel) { logLevel = this.logLevel || LogLevel.Info; } diff --git a/src/matrix/calls/PeerCall.ts b/src/matrix/calls/PeerCall.ts index fc5b48a6..97e39149 100644 --- a/src/matrix/calls/PeerCall.ts +++ b/src/matrix/calls/PeerCall.ts @@ -1080,7 +1080,6 @@ export class PeerCall implements IDisposable { // we really don't want to trigger any code in Member after this this.options.emitUpdate = (_, __, log) => { log.log("emitting update from PeerCall after disposal", this.logItem.level.Error); - console.trace("emitting update from PeerCall after disposal"); }; } diff --git a/src/platform/web/dom/WebRTC.ts b/src/platform/web/dom/WebRTC.ts index 05e032ca..64444727 100644 --- a/src/platform/web/dom/WebRTC.ts +++ b/src/platform/web/dom/WebRTC.ts @@ -31,9 +31,6 @@ export class DOMWebRTC implements WebRTC { }) as PeerConnection; return new Proxy(peerConn, { get(target, prop, receiver) { - if (prop === "close") { - console.trace("calling peerConnection.close"); - } const value = target[prop]; if (typeof value === "function") { return value.bind(target);