blob: 1b29ec56646d8a95417b399e992687aeeb469804 [file] [log] [blame]
Matt Spinler99c2b402019-05-23 14:29:16 -05001#include "elog_entry.hpp"
2#include "extensions.hpp"
3#include "sdbusplus/bus.hpp"
4
5namespace openpower
6{
7namespace pels
8{
9
10using namespace phosphor::logging;
11
12DISABLE_LOG_ENTRY_CAPS();
13
14void pelStartup(internal::Manager& logManager)
15{
16}
17
18REGISTER_EXTENSION_FUNCTION(pelStartup);
19
20void pelCreate(const std::string& message, uint32_t id, uint64_t timestamp,
21 Entry::Level severity, const AdditionalDataArg& additionalData,
22 const AssociationEndpointsArg& assocs)
23{
24}
25
26REGISTER_EXTENSION_FUNCTION(pelCreate);
27
28void pelDelete(uint32_t id)
29{
30}
31
32REGISTER_EXTENSION_FUNCTION(pelDelete);
33
34void pelDeleteProhibited(uint32_t id, bool& prohibited)
35{
36 prohibited = false;
37}
38
39REGISTER_EXTENSION_FUNCTION(pelDeleteProhibited);
40
41} // namespace pels
42} // namespace openpower