blob: c479b355842f8871f21e58f4b5b0763819196e89 [file] [log] [blame]
Marri Devender Rao0947c652017-10-24 02:27:15 -05001#include "org/open_power/Host/Boot/error.hpp"
Jayanth Othayothb618ccb2018-10-22 21:55:29 -05002#include "phosphor-logging/elog-errors.hpp"
3
4#include <phosphor-logging/elog.hpp>
Vishwanatha Subbanna0eff6092017-06-12 21:03:36 +05305
6int main(int argc, char* argv[])
7{
8 using namespace phosphor::logging;
Jayanth Othayothb618ccb2018-10-22 21:55:29 -05009 using error =
10 sdbusplus::org::open_power::Host::Boot::Error::WatchdogTimedOut;
Vishwanatha Subbanna0eff6092017-06-12 21:03:36 +053011 report<error>();
12
13 return 0;
14}