blob: 3fe8fee2d3b0b047b3c23fbdb1c79c2417119c15 [file] [log] [blame]
Adriana Kobylak8f7941e2016-11-14 14:46:23 -06001#pragma once
2
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -05003#include "elog_block.hpp"
Adriana Kobylakdf995fa2017-01-08 15:14:02 -06004#include "elog_entry.hpp"
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -05005#include "xyz/openbmc_project/Collection/DeleteAll/server.hpp"
Matt Spinler3fb83b32019-07-26 11:22:44 -05006#include "xyz/openbmc_project/Logging/Create/server.hpp"
7#include "xyz/openbmc_project/Logging/Entry/server.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -07008#include "xyz/openbmc_project/Logging/Internal/Manager/server.hpp"
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +08009#include "xyz/openbmc_project/Logging/error.hpp"
Patrick Venturef18bf832018-10-26 18:14:00 -070010
Patrick Venturef18bf832018-10-26 18:14:00 -070011#include <phosphor-logging/log.hpp>
12#include <sdbusplus/bus.hpp>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060013
Patrick Williams2544b412022-10-04 08:41:06 -050014#include <list>
15
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060016namespace phosphor
17{
18namespace logging
19{
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060020
Patrick Venturef18bf832018-10-26 18:14:00 -070021extern const std::map<std::string, std::vector<std::string>> g_errMetaMap;
22extern const std::map<std::string, level> g_errLevelMap;
Adriana Kobylakd722b3a2017-02-28 12:10:44 -060023
Willy Tu6ddbf692023-09-05 10:54:16 -070024using CreateIface = sdbusplus::server::xyz::openbmc_project::logging::Create;
Matt Spinler3fb83b32019-07-26 11:22:44 -050025using DeleteAllIface =
Willy Tu6ddbf692023-09-05 10:54:16 -070026 sdbusplus::server::xyz::openbmc_project::collection::DeleteAll;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050027
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +080028using Severity = sdbusplus::xyz::openbmc_project::Logging::server::Entry::Level;
29using LogsCleared =
30 sdbusplus::xyz::openbmc_project::Logging::Error::LogsCleared;
31
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060032namespace details
33{
Matt Spinler3fb83b32019-07-26 11:22:44 -050034template <typename... T>
Patrick Williams45e83522022-07-22 19:26:52 -050035using ServerObject = typename sdbusplus::server::object_t<T...>;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060036
37using ManagerIface =
Willy Tu6ddbf692023-09-05 10:54:16 -070038 sdbusplus::server::xyz::openbmc_project::logging::internal::Manager;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060039
40} // namespace details
41
Matt Spinlerc64b7122020-03-26 10:55:01 -050042constexpr size_t ffdcFormatPos = 0;
43constexpr size_t ffdcSubtypePos = 1;
44constexpr size_t ffdcVersionPos = 2;
45constexpr size_t ffdcFDPos = 3;
46
47using FFDCEntry = std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
48 sdbusplus::message::unix_fd>;
49
50using FFDCEntries = std::vector<FFDCEntry>;
51
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -050052namespace internal
53{
54
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060055/** @class Manager
56 * @brief OpenBMC logging manager implementation.
57 * @details A concrete implementation for the
58 * xyz.openbmc_project.Logging.Internal.Manager DBus API.
59 */
Adriana Kobylakf477fe22017-01-06 11:56:41 -060060class Manager : public details::ServerObject<details::ManagerIface>
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060061{
Patrick Venturef18bf832018-10-26 18:14:00 -070062 public:
63 Manager() = delete;
64 Manager(const Manager&) = delete;
65 Manager& operator=(const Manager&) = delete;
66 Manager(Manager&&) = delete;
67 Manager& operator=(Manager&&) = delete;
68 virtual ~Manager() = default;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060069
Patrick Venturef18bf832018-10-26 18:14:00 -070070 /** @brief Constructor to put object onto bus at a dbus path.
71 * @param[in] bus - Bus to attach to.
72 * @param[in] path - Path to attach at.
73 */
Patrick Williams45e83522022-07-22 19:26:52 -050074 Manager(sdbusplus::bus_t& bus, const char* objPath) :
Patrick Venturef18bf832018-10-26 18:14:00 -070075 details::ServerObject<details::ManagerIface>(bus, objPath), busLog(bus),
76 entryId(0), fwVersion(readFWVersion()){};
Adriana Kobylak8f7941e2016-11-14 14:46:23 -060077
Patrick Venturef18bf832018-10-26 18:14:00 -070078 /*
79 * @fn commit()
80 * @brief sd_bus Commit method implementation callback.
81 * @details Create an error/event log based on transaction id and
82 * error message.
83 * @param[in] transactionId - Unique identifier of the journal entries
84 * to be committed.
85 * @param[in] errMsg - The error exception message associated with the
86 * error log to be committed.
87 */
Lei YUb50c7052021-01-21 16:02:26 +080088 uint32_t commit(uint64_t transactionId, std::string errMsg) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060089
Patrick Venturef18bf832018-10-26 18:14:00 -070090 /*
91 * @fn commit()
92 * @brief sd_bus CommitWithLvl method implementation callback.
93 * @details Create an error/event log based on transaction id and
94 * error message.
95 * @param[in] transactionId - Unique identifier of the journal entries
96 * to be committed.
97 * @param[in] errMsg - The error exception message associated with the
98 * error log to be committed.
99 * @param[in] errLvl - level of the error
100 */
Lei YUb50c7052021-01-21 16:02:26 +0800101 uint32_t commitWithLvl(uint64_t transactionId, std::string errMsg,
102 uint32_t errLvl) override;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600103
Patrick Venturef18bf832018-10-26 18:14:00 -0700104 /** @brief Erase specified entry d-bus object
105 *
106 * @param[in] entryId - unique identifier of the entry
107 */
108 void erase(uint32_t entryId);
Deepak Kodihalli99a85492017-03-31 06:01:57 -0500109
Patrick Venturef18bf832018-10-26 18:14:00 -0700110 /** @brief Construct error d-bus objects from their persisted
111 * representations.
112 */
113 void restore();
Deepak Kodihalli72654f12017-06-12 04:33:29 -0500114
Patrick Venturef18bf832018-10-26 18:14:00 -0700115 /** @brief Erase all error log entries
116 *
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800117 * @return size_t - count of erased entries
Patrick Venturef18bf832018-10-26 18:14:00 -0700118 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800119 size_t eraseAll()
Patrick Venturef18bf832018-10-26 18:14:00 -0700120 {
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800121 size_t entriesSize = entries.size();
Patrick Venturef18bf832018-10-26 18:14:00 -0700122 auto iter = entries.begin();
123 while (iter != entries.end())
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500124 {
Patrick Venture34438962018-10-30 13:17:37 -0700125 auto e = iter->first;
Patrick Venturef18bf832018-10-26 18:14:00 -0700126 ++iter;
Patrick Venture34438962018-10-30 13:17:37 -0700127 erase(e);
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500128 }
Lotus Xud091a572021-05-24 13:59:21 +0800129 entryId = 0;
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800130
131 return entriesSize;
Patrick Venturef18bf832018-10-26 18:14:00 -0700132 }
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500133
Patrick Venturef18bf832018-10-26 18:14:00 -0700134 /** @brief Returns the count of high severity errors
135 *
136 * @return int - count of real errors
137 */
138 int getRealErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500139
Patrick Venturef18bf832018-10-26 18:14:00 -0700140 /** @brief Returns the count of Info errors
141 *
142 * @return int - count of info errors
143 */
144 int getInfoErrSize();
Nagaraju Goruganti477b7312018-06-25 23:28:58 -0500145
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500146 /** @brief Returns the number of blocking errors
147 *
148 * @return int - count of blocking errors
149 */
150 int getBlockingErrSize()
151 {
152 return blockingErrors.size();
153 }
154
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500155 /** @brief Returns the number of property change callback objects
156 *
157 * @return int - count of property callback entries
158 */
159 int getEntryCallbackSize()
160 {
161 return propChangedEntryCallback.size();
162 }
163
Matt Spinler44893cc2020-08-26 11:34:17 -0500164 /**
165 * @brief Returns the sdbusplus bus object
166 *
Patrick Williams45e83522022-07-22 19:26:52 -0500167 * @return sdbusplus::bus_t&
Matt Spinler44893cc2020-08-26 11:34:17 -0500168 */
Patrick Williams45e83522022-07-22 19:26:52 -0500169 sdbusplus::bus_t& getBus()
Matt Spinler8ebfd312019-06-03 12:43:59 -0500170 {
171 return busLog;
172 }
173
Matt Spinler44893cc2020-08-26 11:34:17 -0500174 /**
175 * @brief Returns the ID of the last created entry
176 *
177 * @return uint32_t - The ID
178 */
179 uint32_t lastEntryID() const
180 {
181 return entryId;
182 }
183
Matt Spinler3fb83b32019-07-26 11:22:44 -0500184 /** @brief Creates an event log
185 *
186 * This is an alternative to the _commit() API. It doesn't use
187 * the journal to look up event log metadata like _commit does.
188 *
189 * @param[in] errMsg - The error exception message associated with the
190 * error log to be committed.
191 * @param[in] severity - level of the error
192 * @param[in] additionalData - The AdditionalData property for the error
193 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800194 void create(const std::string& message, Severity severity,
195 const std::map<std::string, std::string>& additionalData);
Matt Spinler3fb83b32019-07-26 11:22:44 -0500196
Matt Spinlerc64b7122020-03-26 10:55:01 -0500197 /** @brief Creates an event log, and accepts FFDC files
198 *
199 * This is the same as create(), but also takes an FFDC argument.
200 *
201 * The FFDC argument is a vector of tuples that allows one to pass in file
202 * descriptors for files that contain FFDC (First Failure Data Capture).
203 * These will be passed to any event logging extensions.
204 *
205 * @param[in] errMsg - The error exception message associated with the
206 * error log to be committed.
207 * @param[in] severity - level of the error
208 * @param[in] additionalData - The AdditionalData property for the error
209 * @param[in] ffdc - A vector of FFDC file info
210 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800211 void
212 createWithFFDC(const std::string& message, Severity severity,
213 const std::map<std::string, std::string>& additionalData,
214 const FFDCEntries& ffdc);
Matt Spinlerc64b7122020-03-26 10:55:01 -0500215
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500216 /** @brief Common wrapper for creating an Entry object
217 *
218 * @return true if quiesce on error setting is enabled, false otherwise
219 */
220 bool isQuiesceOnErrorEnabled();
221
Andrew Geissler32874542020-07-09 09:17:03 -0500222 /** @brief Create boot block association and quiesce host if running
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500223 *
Andrew Geissler32874542020-07-09 09:17:03 -0500224 * @param[in] entryId - The ID of the phosphor logging error
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500225 */
Andrew Geissler32874542020-07-09 09:17:03 -0500226 void quiesceOnError(const uint32_t entryId);
Andrew Geisslerc0c500e2020-03-26 11:08:56 -0500227
Andrew Geisslere4960ee2020-03-30 14:31:52 -0500228 /** @brief Check if inventory callout present in input entry
229 *
230 * @param[in] entry - The error to check for callouts
231 *
232 * @return true if inventory item in associations, false otherwise
233 */
234 bool isCalloutPresent(const Entry& entry);
235
Andrew Geisslerced6e2a2020-04-07 16:15:29 -0500236 /** @brief Check (and remove) entry being erased from blocking errors
237 *
238 * @param[in] entryId - The entry that is being erased
239 */
240 void checkAndRemoveBlockingError(uint32_t entryId);
241
Adriana Kobylake7d271a2020-12-07 14:32:44 -0600242 /** @brief Persistent map of Entry dbus objects and their ID */
243 std::map<uint32_t, std::unique_ptr<Entry>> entries;
244
Patrick Venturef18bf832018-10-26 18:14:00 -0700245 private:
246 /*
247 * @fn _commit()
248 * @brief commit() helper
249 * @param[in] transactionId - Unique identifier of the journal entries
250 * to be committed.
251 * @param[in] errMsg - The error exception message associated with the
252 * error log to be committed.
253 * @param[in] errLvl - level of the error
254 */
255 void _commit(uint64_t transactionId, std::string&& errMsg,
256 Entry::Level errLvl);
Deepak Kodihalli6fd9dc42018-04-03 02:08:42 -0500257
Patrick Venturef18bf832018-10-26 18:14:00 -0700258 /** @brief Call metadata handler(s), if any. Handlers may create
259 * associations.
260 * @param[in] errorName - name of the error
261 * @param[in] additionalData - list of metadata (in key=value format)
262 * @param[out] objects - list of error's association objects
263 */
264 void processMetadata(const std::string& errorName,
265 const std::vector<std::string>& additionalData,
266 AssociationList& objects) const;
Deepak Kodihallia87c1572017-02-28 07:40:34 -0600267
Patrick Venturef18bf832018-10-26 18:14:00 -0700268 /** @brief Reads the BMC code level
269 *
270 * @return std::string - the version string
271 */
272 static std::string readFWVersion();
Matt Spinler1275bd12018-05-01 15:13:53 -0500273
Matt Spinler99c2b402019-05-23 14:29:16 -0500274 /** @brief Call any create() functions provided by any extensions.
275 * This is called right after an event log is created to allow
276 * extensions to create their own log based on this one.
277 *
278 * @param[in] entry - the new event log entry
Matt Spinlerc64b7122020-03-26 10:55:01 -0500279 * @param[in] ffdc - A vector of FFDC file info
Matt Spinler99c2b402019-05-23 14:29:16 -0500280 */
Matt Spinlerc64b7122020-03-26 10:55:01 -0500281 void doExtensionLogCreate(const Entry& entry, const FFDCEntries& ffdc);
Matt Spinler99c2b402019-05-23 14:29:16 -0500282
Matt Spinlerb60e7552019-07-24 15:28:08 -0500283 /** @brief Common wrapper for creating an Entry object
284 *
285 * @param[in] errMsg - The error exception message associated with the
286 * error log to be committed.
287 * @param[in] errLvl - level of the error
288 * @param[in] additionalData - The AdditionalData property for the error
Matt Spinlerc64b7122020-03-26 10:55:01 -0500289 * @param[in] ffdc - A vector of FFDC file info. Defaults to an empty
290 * vector.
Matt Spinlerb60e7552019-07-24 15:28:08 -0500291 */
292 void createEntry(std::string errMsg, Entry::Level errLvl,
Matt Spinlerc64b7122020-03-26 10:55:01 -0500293 std::vector<std::string> additionalData,
294 const FFDCEntries& ffdc = FFDCEntries{});
Matt Spinlerb60e7552019-07-24 15:28:08 -0500295
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500296 /** @brief Notified on entry property changes
297 *
298 * If an entry is blocking, this callback will be registered to monitor for
299 * the entry having it's Resolved field set to true. If it is then remove
300 * the blocking object.
301 *
302 * @param[in] msg - sdbusplus dbusmessage
303 */
Patrick Williams45e83522022-07-22 19:26:52 -0500304 void onEntryResolve(sdbusplus::message_t& msg);
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500305
306 /** @brief Remove block objects for any resolved entries */
307 void findAndRemoveResolvedBlocks();
308
Andrew Geisslerf6126a72020-05-08 10:41:09 -0500309 /** @brief Quiesce host if it is running
310 *
311 * This is called when the user has requested the system be quiesced
312 * if a log with a callout is created
313 */
314 void checkAndQuiesceHost();
315
Patrick Venturef18bf832018-10-26 18:14:00 -0700316 /** @brief Persistent sdbusplus DBus bus connection. */
Patrick Williams45e83522022-07-22 19:26:52 -0500317 sdbusplus::bus_t& busLog;
Adriana Kobylakdf995fa2017-01-08 15:14:02 -0600318
Patrick Venturef18bf832018-10-26 18:14:00 -0700319 /** @brief List of error ids for high severity errors */
320 std::list<uint32_t> realErrors;
Nagaraju Gorugantie4b0b772017-11-30 02:12:45 -0600321
Patrick Venturef18bf832018-10-26 18:14:00 -0700322 /** @brief List of error ids for Info(and below) severity */
323 std::list<uint32_t> infoErrors;
Nagaraju Gorugantif8a5a792017-10-13 08:09:52 -0500324
Patrick Venturef18bf832018-10-26 18:14:00 -0700325 /** @brief Id of last error log entry */
326 uint32_t entryId;
Matt Spinler1275bd12018-05-01 15:13:53 -0500327
Patrick Venturef18bf832018-10-26 18:14:00 -0700328 /** @brief The BMC firmware version */
329 const std::string fwVersion;
Andrew Geissler6a0ef6f2020-04-06 15:06:31 -0500330
331 /** @brief Array of blocking errors */
332 std::vector<std::unique_ptr<Block>> blockingErrors;
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500333
334 /** @brief Map of entry id to call back object on properties changed */
Patrick Williams45e83522022-07-22 19:26:52 -0500335 std::map<uint32_t, std::unique_ptr<sdbusplus::bus::match_t>>
Andrew Geissler7f6d4bc2020-04-16 14:47:34 -0500336 propChangedEntryCallback;
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600337};
338
Patrick Venturef18bf832018-10-26 18:14:00 -0700339} // namespace internal
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500340
341/** @class Manager
Matt Spinler3fb83b32019-07-26 11:22:44 -0500342 * @brief Implementation for deleting all error log entries and
343 * creating new logs.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500344 * @details A concrete implementation for the
Matt Spinler3fb83b32019-07-26 11:22:44 -0500345 * xyz.openbmc_project.Collection.DeleteAll and
346 * xyz.openbmc_project.Logging.Create interfaces.
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500347 */
Matt Spinler3fb83b32019-07-26 11:22:44 -0500348class Manager : public details::ServerObject<DeleteAllIface, CreateIface>
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500349{
Patrick Venturef18bf832018-10-26 18:14:00 -0700350 public:
351 Manager() = delete;
352 Manager(const Manager&) = delete;
353 Manager& operator=(const Manager&) = delete;
354 Manager(Manager&&) = delete;
355 Manager& operator=(Manager&&) = delete;
356 virtual ~Manager() = default;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500357
Patrick Venturef18bf832018-10-26 18:14:00 -0700358 /** @brief Constructor to put object onto bus at a dbus path.
359 * Defer signal registration (pass true for deferSignal to the
360 * base class) until after the properties are set.
361 * @param[in] bus - Bus to attach to.
362 * @param[in] path - Path to attach at.
363 * @param[in] manager - Reference to internal manager object.
364 */
Patrick Williams45e83522022-07-22 19:26:52 -0500365 Manager(sdbusplus::bus_t& bus, const std::string& path,
Patrick Venturef18bf832018-10-26 18:14:00 -0700366 internal::Manager& manager) :
Patrick Williams6ef6b252022-03-30 14:28:27 -0500367 details::ServerObject<DeleteAllIface, CreateIface>(
368 bus, path.c_str(),
369 details::ServerObject<DeleteAllIface,
370 CreateIface>::action::defer_emit),
Patrick Venturef18bf832018-10-26 18:14:00 -0700371 manager(manager){};
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500372
Patrick Venturef18bf832018-10-26 18:14:00 -0700373 /** @brief Delete all d-bus objects.
374 */
Patrick Williamsec4eaea2021-08-28 15:10:15 -0500375 void deleteAll() override
Patrick Venturef18bf832018-10-26 18:14:00 -0700376 {
Matt Spinlerf6f51232022-03-09 10:11:53 -0600377 log<level::INFO>("Deleting all log entries");
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800378 auto numbersOfLogs = manager.eraseAll();
379 std::map<std::string, std::string> additionalData;
380 additionalData.emplace("NUM_LOGS", std::to_string(numbersOfLogs));
381 manager.create(LogsCleared::errName, Severity::Informational,
382 additionalData);
Patrick Venturef18bf832018-10-26 18:14:00 -0700383 }
384
Matt Spinler3fb83b32019-07-26 11:22:44 -0500385 /** @brief D-Bus method call implementation to create an event log.
386 *
387 * @param[in] errMsg - The error exception message associated with the
388 * error log to be committed.
389 * @param[in] severity - Level of the error
390 * @param[in] additionalData - The AdditionalData property for the error
391 */
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800392 void create(std::string message, Severity severity,
393 std::map<std::string, std::string> additionalData) override
Matt Spinler3fb83b32019-07-26 11:22:44 -0500394 {
395 manager.create(message, severity, additionalData);
396 }
397
Matt Spinlerc64b7122020-03-26 10:55:01 -0500398 /** @brief D-Bus method call implementation to create an event log with FFDC
399 *
400 * The same as create(), but takes an extra FFDC argument.
401 *
402 * @param[in] errMsg - The error exception message associated with the
403 * error log to be committed.
404 * @param[in] severity - Level of the error
405 * @param[in] additionalData - The AdditionalData property for the error
406 * @param[in] ffdc - A vector of FFDC file info
407 */
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500408 void createWithFFDCFiles(
BonnieLo-wiwynn6f533662023-04-27 13:41:44 +0800409 std::string message, Severity severity,
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500410 std::map<std::string, std::string> additionalData,
411 std::vector<std::tuple<CreateIface::FFDCFormat, uint8_t, uint8_t,
412 sdbusplus::message::unix_fd>>
413 ffdc) override
414 {
Matt Spinlerc64b7122020-03-26 10:55:01 -0500415 manager.createWithFFDC(message, severity, additionalData, ffdc);
Matt Spinlerfcbaf3e2020-03-23 09:22:45 -0500416 }
417
Patrick Venturef18bf832018-10-26 18:14:00 -0700418 private:
419 /** @brief This is a reference to manager object */
420 internal::Manager& manager;
Nagaraju Goruganti05aae8b2017-08-30 07:56:12 -0500421};
422
Adriana Kobylak8f7941e2016-11-14 14:46:23 -0600423} // namespace logging
424} // namespace phosphor