diff --git a/storage/fs/ustar.cpp b/storage/fs/ustar.cpp index 1a7131e6..b05ed8e4 100644 --- a/storage/fs/ustar.cpp +++ b/storage/fs/ustar.cpp @@ -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); diff --git a/storage/node.cpp b/storage/node.cpp index a74cf4a0..f466dcae 100644 --- a/storage/node.cpp +++ b/storage/node.cpp @@ -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()