mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Debug Diff
This commit is contained in:
+10
-1
@@ -1435,6 +1435,9 @@ speechSynthesis.getVoices();
|
|||||||
ref,
|
ref,
|
||||||
props
|
props
|
||||||
});
|
});
|
||||||
|
if (this.debugDiff) {
|
||||||
|
console.log('>', ref.displayName, props);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ref;
|
return ref;
|
||||||
@@ -4065,6 +4068,7 @@ speechSynthesis.getVoices();
|
|||||||
$app.data.debug = false;
|
$app.data.debug = false;
|
||||||
$app.data.debugWebRequests = false;
|
$app.data.debugWebRequests = false;
|
||||||
$app.data.debugWebSocket = false;
|
$app.data.debugWebSocket = false;
|
||||||
|
$app.data.debugDiff = false;
|
||||||
|
|
||||||
$app.data.APILastOnline = new Map();
|
$app.data.APILastOnline = new Map();
|
||||||
|
|
||||||
@@ -15600,7 +15604,12 @@ speechSynthesis.getVoices();
|
|||||||
|
|
||||||
$app.methods.showConsole = function () {
|
$app.methods.showConsole = function () {
|
||||||
AppApi.ShowDevTools();
|
AppApi.ShowDevTools();
|
||||||
if (this.debug || this.debugWebRequests || this.debugWebSocket) {
|
if (
|
||||||
|
this.debug ||
|
||||||
|
this.debugWebRequests ||
|
||||||
|
this.debugWebSocket ||
|
||||||
|
this.debugDiff
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log(
|
console.log(
|
||||||
|
|||||||
Reference in New Issue
Block a user