From e327ca783b562ad1cebcd957650de93c0e766dc7 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 1 Apr 2024 03:24:47 +0300 Subject: [PATCH] Comment debug statements in ustar.cpp and node.cpp --- storage/fs/ustar.cpp | 4 ++-- storage/node.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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()