1 #include "org/open_power/Host/Boot/error.hpp" 2 3 #include <phosphor-logging/elog-errors.hpp> 4 #include <phosphor-logging/elog.hpp> 5 main(int,char **)6int main(int /*argc*/, char** /*argv*/) 7 { 8 using namespace phosphor::logging; 9 using error = sdbusplus::org::open_power::Host::Boot::Error::Checkstop; 10 report<error>(); 11 12 return 0; 13 } 14