From b73f610e8d121ceecca583c19073ef6e58812c12 Mon Sep 17 00:00:00 2001 From: zhuoli Date: Sat, 6 May 2023 21:38:06 +0800 Subject: [PATCH] Remove unnecessary log message, which may cause buffer size excessding of Nodejs Issue: I70YE3 Signed-off-by: zhuoli Change-Id: Ie92a8c204081762e1386390c6f9ebb7cef9fb194 --- merge_abc/src/protobufSnapshotGenerator.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/merge_abc/src/protobufSnapshotGenerator.cpp b/merge_abc/src/protobufSnapshotGenerator.cpp index ba772e5557..8d18f4b45f 100644 --- a/merge_abc/src/protobufSnapshotGenerator.cpp +++ b/merge_abc/src/protobufSnapshotGenerator.cpp @@ -56,7 +56,6 @@ panda::es2panda::util::ProgramCache *ProtobufSnapshotGenerator::GetCacheContext( std::fstream input(panda::os::file::File::GetExtendedFilePath(cacheFilePath), std::ios::in | std::ios::binary); if (!input) { - std::cout << "Cache file: " << cacheFilePath << " doesn't exist" << std::endl; return nullptr; } -- Gitee