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