From 15bba880aaa07634cceaec97b8b4440ee328b7cc Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Fri, 10 May 2019 16:11:54 -0700 Subject: cleanup: delete blob byte printing Delete extra debug printing now that the code is verified as functioning as it should for a sufficient variety of commands. Change-Id: I885640c7c8cc049532b0dd42d587995c69a0d673 Signed-off-by: Patrick Venture --- src/ipmiblob/blob_handler.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/ipmiblob/blob_handler.cpp') diff --git a/src/ipmiblob/blob_handler.cpp b/src/ipmiblob/blob_handler.cpp index b91b775..7a688bf 100644 --- a/src/ipmiblob/blob_handler.cpp +++ b/src/ipmiblob/blob_handler.cpp @@ -100,12 +100,6 @@ std::vector auto ptr = reinterpret_cast(&crc); std::memcpy(ptr, &reply[ipmiPhosphorOen.size()], sizeof(crc)); - for (const auto& byte : reply) - { - std::fprintf(stderr, "0x%02x ", byte); - } - std::fprintf(stderr, "\n"); - bytes.insert(bytes.begin(), reply.begin() + headerSize, reply.end()); auto computed = generateCrc(bytes); @@ -138,7 +132,6 @@ int BlobHandler::getBlobCount() return 0; } - std::fprintf(stderr, "BLOB Count: %u\n", count); return count; } -- cgit v1.2.3