@@ -20,17 +20,17 @@ namespace logging
20
20
extern const std::map<std::string, std::vector<std::string>> g_errMetaMap;
21
21
extern const std::map<std::string, level> g_errLevelMap;
22
22
23
- using CreateIface = sdbusplus::xyz::openbmc_project::Logging::server ::Create;
23
+ using CreateIface = sdbusplus::server:: xyz::openbmc_project::logging ::Create;
24
24
using DeleteAllIface =
25
- sdbusplus::xyz::openbmc_project::Collection::server ::DeleteAll;
25
+ sdbusplus::server:: xyz::openbmc_project::collection ::DeleteAll;
26
26
27
27
namespace details
28
28
{
29
29
template <typename ... T>
30
30
using ServerObject = typename sdbusplus::server::object_t <T...>;
31
31
32
32
using ManagerIface =
33
- sdbusplus::xyz::openbmc_project::Logging::Internal::server ::Manager;
33
+ sdbusplus::server:: xyz::openbmc_project::logging::internal ::Manager;
34
34
35
35
} // namespace details
36
36
@@ -184,7 +184,7 @@ class Manager : public details::ServerObject<details::ManagerIface>
184
184
*/
185
185
void create (
186
186
const std::string& message,
187
- sdbusplus::xyz::openbmc_project::Logging::server ::Entry::Level severity,
187
+ sdbusplus::server:: xyz::openbmc_project::logging ::Entry::Level severity,
188
188
const std::map<std::string, std::string>& additionalData);
189
189
190
190
/* * @brief Creates an event log, and accepts FFDC files
@@ -203,7 +203,7 @@ class Manager : public details::ServerObject<details::ManagerIface>
203
203
*/
204
204
void createWithFFDC (
205
205
const std::string& message,
206
- sdbusplus::xyz::openbmc_project::Logging::server ::Entry::Level severity,
206
+ sdbusplus::server:: xyz::openbmc_project::logging ::Entry::Level severity,
207
207
const std::map<std::string, std::string>& additionalData,
208
208
const FFDCEntries& ffdc);
209
209
@@ -381,7 +381,7 @@ class Manager : public details::ServerObject<DeleteAllIface, CreateIface>
381
381
*/
382
382
void create (
383
383
std::string message,
384
- sdbusplus::xyz::openbmc_project::Logging::server ::Entry::Level severity,
384
+ sdbusplus::server:: xyz::openbmc_project::logging ::Entry::Level severity,
385
385
std::map<std::string, std::string> additionalData) override
386
386
{
387
387
manager.create (message, severity, additionalData);
@@ -399,7 +399,7 @@ class Manager : public details::ServerObject<DeleteAllIface, CreateIface>
399
399
*/
400
400
void createWithFFDCFiles (
401
401
std::string message,
402
- sdbusplus::xyz::openbmc_project::Logging::server ::Entry::Level severity,
402
+ sdbusplus::server:: xyz::openbmc_project::logging ::Entry::Level severity,
403
403
std::map<std::string, std::string> additionalData,
404
404
std::vector<std::tuple<CreateIface::FFDCFormat, uint8_t , uint8_t ,
405
405
sdbusplus::message::unix_fd>>
0 commit comments