diff options
| author | Anthony Wilson <wilsonan@us.ibm.com> | 2019-04-22 02:10:09 -0500 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2019-07-03 16:48:58 +0000 |
| commit | 27062605f8ddbafeec691ed9556fe90f2c1ab8d2 (patch) | |
| tree | 79cb1203972e286936cecfcbed4a5fd088d9c08e /redfish-core/include | |
| parent | 08a4e4b592e582c8534f59dc73320763a07a3bbb (diff) | |
| download | bmcweb-27062605f8ddbafeec691ed9556fe90f2c1ab8d2.tar.gz bmcweb-27062605f8ddbafeec691ed9556fe90f2c1ab8d2.zip | |
bmcweb: Clear up event log entry class names
It wasn't immediately clear what some of the classes
did without digging through the implementation. This
should clear up any confusion between the Journal and
DBus implementations of the event log entry classes.
Tested: Verified changes were present in both implementations
of event log enttry.
Change-Id: Id0d6bad5c73feb93608ac1ad457235a1d31fe018
Signed-off-by: Anthony Wilson <wilsonan@us.ibm.com>
Diffstat (limited to 'redfish-core/include')
| -rw-r--r-- | redfish-core/include/redfish.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp index 718b082..44cc74c 100644 --- a/redfish-core/include/redfish.hpp +++ b/redfish-core/include/redfish.hpp @@ -83,7 +83,8 @@ class RedfishService nodes.emplace_back(std::make_unique<EventLogService>(app)); nodes.emplace_back(std::make_unique<EventLogClear>(app)); #ifndef BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES - nodes.emplace_back(std::make_unique<EventLogEntryCollection>(app)); + nodes.emplace_back( + std::make_unique<JournalEventLogEntryCollection>(app)); #endif nodes.emplace_back(std::make_unique<BMCLogServiceCollection>(app)); |

