From 9b7a28427d567cc349c669d13a3ee55902d404fd Mon Sep 17 00:00:00 2001 From: chenqy930 Date: Wed, 21 Dec 2022 09:54:43 +0800 Subject: [PATCH] Clean cache file log Issue: I66WFJ Signed-off-by: chenqy930 Change-Id: I28027ffbf818a72ac763a6b520208e887d32d9d3 --- merge_abc/src/protobufSnapshotGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merge_abc/src/protobufSnapshotGenerator.cpp b/merge_abc/src/protobufSnapshotGenerator.cpp index daeee4716c..52db9f457e 100644 --- a/merge_abc/src/protobufSnapshotGenerator.cpp +++ b/merge_abc/src/protobufSnapshotGenerator.cpp @@ -69,7 +69,7 @@ std::map *ProtobufSnapshotGen { std::fstream input(cacheFilePath, std::ios::in | std::ios::binary); if (!input) { - std::cerr << "Cache file: " << cacheFilePath << " doesn't exist" << std::endl; + std::cout << "Cache file: " << cacheFilePath << " doesn't exist" << std::endl; return nullptr; } protoPanda::CompositeProgram protoCompositeProgram; -- Gitee