From 414c35e0816dfeafa8ce84aee907951a879d82c3 Mon Sep 17 00:00:00 2001 From: chenqy930 Date: Wed, 21 Dec 2022 09:54:43 +0800 Subject: [PATCH] fixed 9b7a284 from https://gitee.com/chenqy930/arkcompiler_ets_frontend_hotfix_dev/pulls/774 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