| Vishwanatha Subbanna | 0eff609 | 2017-06-12 21:03:36 +0530 | [diff] [blame] | 1 | #include <phosphor-logging/elog.hpp> |
| 2 | #include "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 | |||||