Comment debug statements in ustar.cpp and node.cpp

This commit is contained in:
EnderIce2 2024-04-01 03:24:47 +03:00
parent 6f0a2b3f17
commit e327ca783b
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 3 additions and 3 deletions

View File

@ -141,8 +141,8 @@ namespace vfs
node = new USTARNode((Address + 512), header->name,
type, vfs_ctx);
debug("%s %d KiB, Type:%c", header->name,
TO_KiB(size), header->typeflag[0]);
// debug("%s %d KiB, Type:%c", header->name,
// TO_KiB(size), header->typeflag[0]);
node->Mode = string2int(header->mode);
node->Size = size;
node->GroupIdentifier = getsize(header->gid);

View File

@ -221,7 +221,7 @@ namespace vfs
this->Name, this);
}
debug("Created node %s(%#lx)", this->FullPath, this);
// debug("Created node %s(%#lx)", this->FullPath, this);
}
Node::~Node()