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