blob: ddcb0631edb0195f5f37189d39a9b1af662ace5d [file] [log] [blame]
#include "config.h"
#include "extensions.hpp"
#include "log_manager.hpp"
#include <experimental/filesystem>
#include <sdbusplus/bus.hpp>
#include <sdbusplus/server/manager.hpp>
int main(int argc, char* argv[])
{
auto bus = sdbusplus::bus::new_default();
// Add sdbusplus ObjectManager for the 'root' path of the logging manager.
sdbusplus::server::manager::manager objManager(bus, OBJ_LOGGING);
phosphor::logging::internal::Manager iMgr(bus, OBJ_INTERNAL);
phosphor::logging::Manager mgr(bus, OBJ_LOGGING, iMgr);
// Create a directory to persist errors.
std::experimental::filesystem::create_directories(ERRLOG_PERSIST_PATH);
// Recreate error d-bus objects from persisted errors.
iMgr.restore();
bus.request_name(BUSNAME_LOGGING);
for (auto& startup : phosphor::logging::Extensions::getStartupFunctions())
{
try
{
startup(iMgr);
}
catch (std::exception& e)
{
phosphor::logging::log<phosphor::logging::level::ERR>(
"An extension's startup function threw an exception",
phosphor::logging::entry("ERROR=%s", e.what()));
}
}
while (true)
{
bus.process_discard();
bus.wait();
}
return 0;
}