summaryrefslogtreecommitdiffstats
path: root/watchdog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'watchdog.cpp')
-rw-r--r--watchdog.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/watchdog.cpp b/watchdog.cpp
index d529746..bc3ba95 100644
--- a/watchdog.cpp
+++ b/watchdog.cpp
@@ -101,19 +101,23 @@ void Watchdog::timeOutHandler()
action = fallback->action;
}
- WatchdogInherits::expiredTimerUse(WatchdogInherits::currentTimerUse());
+ expiredTimerUse(currentTimerUse());
auto target = actionTargetMap.find(action);
if (target == actionTargetMap.end())
{
log<level::INFO>("watchdog: Timed out with no target",
- entry("ACTION=%s", convertForMessage(action).c_str()));
+ entry("ACTION=%s", convertForMessage(action).c_str()),
+ entry("TIMER_USE=%s",
+ convertForMessage(expiredTimerUse()).c_str()));
}
else
{
- log<level::INFO>("watchdog: Timed out",
- entry("ACTION=%s", convertForMessage(action).c_str()),
- entry("TARGET=%s", target->second.c_str()));
+ log<level::INFO>(
+ "watchdog: Timed out",
+ entry("ACTION=%s", convertForMessage(action).c_str()),
+ entry("TIMER_USE=%s", convertForMessage(expiredTimerUse()).c_str()),
+ entry("TARGET=%s", target->second.c_str()));
try
{
OpenPOWER on IntegriCloud