Add log for receiving CPER and counter files
Tested: log printed out when an error happened
Change-Id: I4804df296bb5d06e7aeaf03fd2281598121c20c9
Signed-off-by: Hao Zhou <haoooamazing@google.com>
diff --git a/src/rde/external_storer_file.cpp b/src/rde/external_storer_file.cpp
index 6ae39d2..23f32c5 100644
--- a/src/rde/external_storer_file.cpp
+++ b/src/rde/external_storer_file.cpp
@@ -18,6 +18,7 @@
std::filesystem::path path(folderPath);
if (!std::filesystem::is_directory(path))
{
+ stdplus::print(stderr, "no directory at {}, creating.\n", folderPath);
if (!std::filesystem::create_directories(path))
{
stdplus::print(stderr, "Failed to create a folder at {}\n",
@@ -159,6 +160,7 @@
// a client.
logEntry.erase("@odata.id");
+ stdplus::print(stderr, "Creating CPER file under path: {}. \n", fullPath);
if (!fileHandler->createFile(fullPath, logEntry))
{
stdplus::print(stderr,
@@ -224,7 +226,13 @@
jsonPdr.dump(4));
return false;
}
- return createFile(jsonPdr["@odata.id"].get<std::string>(), jsonPdr);
+
+ const std::string& path = jsonPdr["@odata.id"].get<std::string>();
+
+ stdplus::print(stderr,
+ "Creating error counter file under path: {}. content: {}\n",
+ path, jsonPdr.dump());
+ return createFile(path, jsonPdr);
}
bool ExternalStorerFileInterface::createFile(