Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable logs
Browse files Browse the repository at this point in the history
DaelonSuzuka committed Jan 4, 2025
1 parent 534c18d commit bedb4db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debugger/godot4/variables/variant_decoder.ts
Original file line number Diff line number Diff line change
@@ -277,8 +277,8 @@ export class VariantDecoder {
keyType = this.decode_ContainerTypeFlag(model, type, 16);
valueType = this.decode_ContainerTypeFlag(model, type, 18);

console.log("type:", (type >> 16) & 0b11, "keyType:", keyType);
console.log("type:", type >> 18, "valueType:", valueType);
// console.log("type:", (type >> 16) & 0b11, "keyType:", keyType);
// console.log("type:", type >> 18, "valueType:", valueType);
}
// TODO: the type information is currently discarded
// it needs to be decoded and then packed into the output somehow

0 comments on commit bedb4db

Please sign in to comment.